about summary refs log tree commit diff
path: root/others/other/express.py
diff options
context:
space:
mode:
authorRaphael McSinyx <vn.mcsinyx@gmail.com>2017-06-20 15:11:08 +0700
committerRaphael McSinyx <vn.mcsinyx@gmail.com>2017-06-20 15:11:08 +0700
commit4ac65940e064c5b587699549a0c7277d2dd733a8 (patch)
treee2a6052f5f3dcd56e760ed85b13310147aeea42b /others/other/express.py
parenta0c92beee1199f13227b1642ccf07f264912e5ad (diff)
downloadcp-4ac65940e064c5b587699549a0c7277d2dd733a8.tar.gz
Thầy Nguyễn Thanh Tùng ôn THT XXIII
Diffstat (limited to 'others/other/express.py')
-rwxr-xr-xothers/other/express.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/others/other/express.py b/others/other/express.py
new file mode 100755
index 0000000..70b8316
--- /dev/null
+++ b/others/other/express.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+with open('express.inp') as fi, open('express.out', 'w') as fo:
+    a = tuple(map(int, fi.read().split()))[1:]
+    print(max(
+        sum(a[:i]) + a[i]*a[i+1] + sum(a[i+2:j]) + a[j]*a[j+1] + sum(a[j+2:])
+        for i in range(len(a) - 3) for j in range(i + 2, len(a) - 1)), file=fo)