結果

問題 No.944 煎っぞ!
ユーザー zer0zer0
提出日時 2020-01-13 18:33:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 3,000 ms
コード長 564 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 175,084 KB
最終ジャッジ日時 2024-12-21 11:02:21
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
119,164 KB
testcase_01 AC 111 ms
94,068 KB
testcase_02 AC 96 ms
87,132 KB
testcase_03 AC 108 ms
90,836 KB
testcase_04 AC 254 ms
131,244 KB
testcase_05 AC 74 ms
82,224 KB
testcase_06 AC 81 ms
84,064 KB
testcase_07 AC 105 ms
91,172 KB
testcase_08 AC 245 ms
124,740 KB
testcase_09 AC 88 ms
85,304 KB
testcase_10 AC 59 ms
62,020 KB
testcase_11 AC 89 ms
73,268 KB
testcase_12 AC 76 ms
68,864 KB
testcase_13 AC 45 ms
57,828 KB
testcase_14 AC 90 ms
74,128 KB
testcase_15 AC 66 ms
68,352 KB
testcase_16 AC 46 ms
52,316 KB
testcase_17 AC 51 ms
59,848 KB
testcase_18 AC 91 ms
74,016 KB
testcase_19 AC 94 ms
73,504 KB
testcase_20 AC 93 ms
88,208 KB
testcase_21 AC 97 ms
87,692 KB
testcase_22 AC 94 ms
87,292 KB
testcase_23 AC 133 ms
100,376 KB
testcase_24 AC 327 ms
143,612 KB
testcase_25 AC 108 ms
90,800 KB
testcase_26 AC 106 ms
90,592 KB
testcase_27 AC 415 ms
175,084 KB
testcase_28 AC 47 ms
53,188 KB
testcase_29 AC 43 ms
53,304 KB
testcase_30 AC 146 ms
101,536 KB
testcase_31 AC 188 ms
109,576 KB
testcase_32 AC 123 ms
94,320 KB
testcase_33 AC 213 ms
120,344 KB
testcase_34 AC 200 ms
113,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    rlst = []
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            rlst.append(i)
            if i != n // i:
                rlst.append(n // i)
    rlst.sort()
    return rlst

N = int(input())
a = list(map(int, input().split()))
totala = sum(a)
divlst = div(totala)
ruia = [0] * (N + 1)
for i in range(N):
    ruia[i + 1] = a[i] + ruia[i]

ans = 0
for i in divlst:
    tmp = totala // i
    cnt = 0
    for j in ruia[1:]:
        if j % i == 0:
            cnt += 1

    if tmp == cnt:
        ans = max(ans, cnt)

print(ans)
0