結果

問題 No.944 煎っぞ!
ユーザー ああいいああいい
提出日時 2022-03-13 22:33:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 3,000 ms
コード長 570 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-09-19 06:10:57
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
77,824 KB
testcase_01 AC 56 ms
78,336 KB
testcase_02 AC 58 ms
77,824 KB
testcase_03 AC 56 ms
78,208 KB
testcase_04 AC 58 ms
78,464 KB
testcase_05 AC 52 ms
77,440 KB
testcase_06 AC 56 ms
78,464 KB
testcase_07 AC 57 ms
77,952 KB
testcase_08 AC 59 ms
78,592 KB
testcase_09 AC 61 ms
78,080 KB
testcase_10 AC 42 ms
59,136 KB
testcase_11 AC 44 ms
63,504 KB
testcase_12 AC 45 ms
61,696 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 43 ms
63,104 KB
testcase_15 AC 41 ms
61,184 KB
testcase_16 AC 36 ms
51,584 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 45 ms
62,848 KB
testcase_19 AC 44 ms
62,848 KB
testcase_20 AC 59 ms
79,360 KB
testcase_21 AC 56 ms
79,232 KB
testcase_22 AC 54 ms
78,080 KB
testcase_23 AC 55 ms
78,664 KB
testcase_24 AC 57 ms
79,308 KB
testcase_25 AC 57 ms
78,372 KB
testcase_26 AC 56 ms
78,320 KB
testcase_27 AC 60 ms
79,780 KB
testcase_28 AC 35 ms
51,944 KB
testcase_29 AC 34 ms
53,384 KB
testcase_30 AC 55 ms
79,616 KB
testcase_31 AC 75 ms
85,248 KB
testcase_32 AC 64 ms
81,152 KB
testcase_33 AC 62 ms
80,000 KB
testcase_34 AC 61 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))

def calc(x):
    count = 0
    now = 0
    left = 0
    while left < N:
        right = left
        while right < N and now + a[right] <= x:
            now += a[right]
            right += 1
        if now < x:
            return 0
        now = 0
        count += 1
        left = right
    return count
ans = 0
S = sum(a)

i = 1
while i * i <= S:
    if S % i == 0:
        t = calc(i)
        if t > ans:
            ans = t
        t = calc(S // i)
        if t > ans:
            ans = t
    i += 1
print(ans)
0