結果

問題 No.944 煎っぞ!
ユーザー prd_xxxprd_xxx
提出日時 2019-12-07 00:14:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,274 ms / 3,000 ms
コード長 433 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,112 KB
最終ジャッジ日時 2024-06-06 12:42:36
合計ジャッジ時間 7,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
12,992 KB
testcase_01 AC 99 ms
13,000 KB
testcase_02 AC 186 ms
12,996 KB
testcase_03 AC 113 ms
12,872 KB
testcase_04 AC 158 ms
13,012 KB
testcase_05 AC 86 ms
12,880 KB
testcase_06 AC 113 ms
13,004 KB
testcase_07 AC 115 ms
13,008 KB
testcase_08 AC 150 ms
12,992 KB
testcase_09 AC 89 ms
12,872 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 68 ms
11,904 KB
testcase_12 AC 53 ms
11,264 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 53 ms
11,776 KB
testcase_15 AC 52 ms
11,136 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 66 ms
11,904 KB
testcase_19 AC 66 ms
11,776 KB
testcase_20 AC 100 ms
16,940 KB
testcase_21 AC 105 ms
16,932 KB
testcase_22 AC 130 ms
12,388 KB
testcase_23 AC 170 ms
12,636 KB
testcase_24 AC 222 ms
12,380 KB
testcase_25 AC 162 ms
12,512 KB
testcase_26 AC 150 ms
12,380 KB
testcase_27 AC 339 ms
16,180 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 126 ms
17,112 KB
testcase_31 AC 1,274 ms
12,508 KB
testcase_32 AC 526 ms
12,512 KB
testcase_33 AC 238 ms
14,464 KB
testcase_34 AC 239 ms
14,404 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