結果

問題 No.944 煎っぞ!
ユーザー convexineqconvexineq
提出日時 2021-05-06 04:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 3,000 ms
コード長 520 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-13 20:55:58
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
80,896 KB
testcase_01 AC 62 ms
80,768 KB
testcase_02 AC 62 ms
81,536 KB
testcase_03 AC 66 ms
80,768 KB
testcase_04 AC 63 ms
81,324 KB
testcase_05 AC 63 ms
81,152 KB
testcase_06 AC 64 ms
80,896 KB
testcase_07 AC 62 ms
81,408 KB
testcase_08 AC 63 ms
81,408 KB
testcase_09 AC 62 ms
80,896 KB
testcase_10 AC 42 ms
58,624 KB
testcase_11 AC 45 ms
63,744 KB
testcase_12 AC 44 ms
60,928 KB
testcase_13 AC 38 ms
52,088 KB
testcase_14 AC 45 ms
63,232 KB
testcase_15 AC 43 ms
60,672 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 45 ms
63,232 KB
testcase_19 AC 45 ms
62,848 KB
testcase_20 AC 65 ms
81,920 KB
testcase_21 AC 64 ms
82,048 KB
testcase_22 AC 62 ms
80,896 KB
testcase_23 AC 63 ms
80,768 KB
testcase_24 AC 62 ms
81,792 KB
testcase_25 AC 62 ms
81,664 KB
testcase_26 AC 61 ms
81,408 KB
testcase_27 AC 66 ms
81,792 KB
testcase_28 AC 37 ms
51,584 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 63 ms
82,304 KB
testcase_31 AC 75 ms
85,504 KB
testcase_32 AC 66 ms
82,816 KB
testcase_33 AC 66 ms
82,944 KB
testcase_34 AC 67 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

def check(x):
    v = 0
    for ai in a:
        if v+ai > x: return 0
        v += ai
        if v == x: v = 0
    return 1

n = int(input())
*a, = map(int,input().split())
s = sum(a)
ans = 0
for d in divisor_list(s):
    if check(s//d): ans = d
print(ans)
0