結果

問題 No.944 煎っぞ!
ユーザー prd_xxxprd_xxx
提出日時 2019-12-07 00:14:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,463 ms / 3,000 ms
コード長 433 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,368 KB
最終ジャッジ日時 2024-12-24 04:30:05
合計ジャッジ時間 6,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
12,992 KB
testcase_01 AC 92 ms
13,124 KB
testcase_02 AC 104 ms
13,120 KB
testcase_03 AC 110 ms
13,124 KB
testcase_04 AC 153 ms
13,016 KB
testcase_05 AC 81 ms
13,132 KB
testcase_06 AC 96 ms
13,132 KB
testcase_07 AC 102 ms
13,136 KB
testcase_08 AC 141 ms
13,000 KB
testcase_09 AC 78 ms
13,124 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 61 ms
11,904 KB
testcase_12 AC 48 ms
11,392 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 47 ms
12,032 KB
testcase_15 AC 48 ms
11,264 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 61 ms
12,032 KB
testcase_19 AC 64 ms
11,904 KB
testcase_20 AC 90 ms
16,812 KB
testcase_21 AC 92 ms
16,812 KB
testcase_22 AC 129 ms
12,512 KB
testcase_23 AC 156 ms
12,636 KB
testcase_24 AC 215 ms
12,508 KB
testcase_25 AC 156 ms
12,632 KB
testcase_26 AC 136 ms
12,636 KB
testcase_27 AC 321 ms
16,180 KB
testcase_28 AC 36 ms
10,624 KB
testcase_29 AC 33 ms
10,752 KB
testcase_30 AC 146 ms
17,368 KB
testcase_31 AC 1,463 ms
12,512 KB
testcase_32 AC 551 ms
12,640 KB
testcase_33 AC 254 ms
14,716 KB
testcase_34 AC 258 ms
14,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
sa = sum(A)

ds = set()
d = 1
while d*d <= sa:
    if sa%d==0:
        ds.add(d)
        ds.add(sa//d)
    d += 1

ans = 1
for d in ds:
    if d > N: continue
    v = sa//d
    c = 0
    nxt = v
    for a in A:
        if c+a > nxt: break
        if c+a == nxt:
            c += a
            nxt += v
        else:
            c += a
    else:
        ans = max(ans, d)
print(ans)
0