結果

問題 No.1925 悪鬼三七次元
ユーザー tassei903tassei903
提出日時 2022-04-30 20:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,996 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 112,536 KB
最終ジャッジ日時 2024-10-12 21:48:50
合計ジャッジ時間 43,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,996 ms
112,536 KB
testcase_01 AC 1,963 ms
110,992 KB
testcase_02 AC 1,947 ms
111,844 KB
testcase_03 AC 884 ms
96,768 KB
testcase_04 AC 897 ms
96,980 KB
testcase_05 AC 890 ms
97,152 KB
testcase_06 AC 904 ms
96,640 KB
testcase_07 AC 895 ms
97,152 KB
testcase_08 AC 900 ms
96,768 KB
testcase_09 AC 926 ms
96,768 KB
testcase_10 AC 897 ms
97,024 KB
testcase_11 AC 898 ms
96,640 KB
testcase_12 AC 885 ms
96,840 KB
testcase_13 AC 901 ms
96,896 KB
testcase_14 AC 887 ms
96,512 KB
testcase_15 AC 922 ms
96,896 KB
testcase_16 AC 908 ms
96,640 KB
testcase_17 AC 917 ms
96,640 KB
testcase_18 AC 901 ms
96,512 KB
testcase_19 AC 882 ms
96,896 KB
testcase_20 AC 910 ms
97,088 KB
testcase_21 AC 919 ms
96,640 KB
testcase_22 AC 917 ms
96,896 KB
testcase_23 AC 1,508 ms
102,436 KB
testcase_24 AC 1,077 ms
95,968 KB
testcase_25 AC 255 ms
78,464 KB
testcase_26 AC 151 ms
76,412 KB
testcase_27 AC 691 ms
88,648 KB
testcase_28 AC 844 ms
91,776 KB
testcase_29 AC 335 ms
81,024 KB
testcase_30 AC 1,229 ms
98,468 KB
testcase_31 AC 557 ms
87,520 KB
testcase_32 AC 251 ms
78,860 KB
testcase_33 AC 287 ms
80,000 KB
testcase_34 AC 1,031 ms
95,264 KB
testcase_35 AC 893 ms
92,288 KB
testcase_36 AC 258 ms
79,104 KB
testcase_37 AC 443 ms
83,840 KB
testcase_38 AC 484 ms
84,288 KB
testcase_39 AC 1,564 ms
104,612 KB
testcase_40 AC 658 ms
91,468 KB
testcase_41 AC 478 ms
85,700 KB
testcase_42 AC 1,219 ms
98,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

from bisect import bisect_left as bl
def g(d):
    if n % 2:
        dp = [0]*(2+n)
        for i in range(n,-1,-1):
            dp[i] = dp[bl(x,x[i]+d)] + bl(x,x[i]+d)-i-1
        #print(dp)
        if dp[0] <= n//2:
            return 1
        else:
            return 0
    else:
        z = 0
        for i in range(n):
            z = max(z, bl(x, x[i]+d)-i-1)
        #print(z)
        if z > n//2:
            return 0
        else:
            return 1

n = ni()
a = na()
x = [0]
for i in range(n):
    x.append(x[-1]+a[i])
ok = 0
ng = 10**14+1
while ng-ok>1:
    d = ok+ng>>1
    if g(d):
        ok= d
    else:
        ng = d
print(ok)
0