結果

問題 No.944 煎っぞ!
ユーザー 👑 rin204rin204
提出日時 2022-01-18 23:38:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 3,000 ms
コード長 500 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-11-23 13:37:12
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
93,312 KB
testcase_01 AC 70 ms
93,696 KB
testcase_02 AC 70 ms
93,824 KB
testcase_03 AC 70 ms
93,440 KB
testcase_04 AC 72 ms
93,184 KB
testcase_05 AC 73 ms
93,568 KB
testcase_06 AC 71 ms
93,056 KB
testcase_07 AC 70 ms
93,696 KB
testcase_08 AC 70 ms
93,312 KB
testcase_09 AC 70 ms
93,568 KB
testcase_10 AC 40 ms
59,136 KB
testcase_11 AC 46 ms
66,048 KB
testcase_12 AC 43 ms
62,464 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 46 ms
66,432 KB
testcase_15 AC 43 ms
61,440 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 44 ms
66,048 KB
testcase_19 AC 46 ms
65,792 KB
testcase_20 AC 73 ms
94,592 KB
testcase_21 AC 73 ms
94,208 KB
testcase_22 AC 69 ms
93,440 KB
testcase_23 AC 70 ms
93,184 KB
testcase_24 AC 70 ms
93,568 KB
testcase_25 AC 70 ms
93,568 KB
testcase_26 AC 71 ms
93,184 KB
testcase_27 AC 72 ms
93,952 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 37 ms
52,480 KB
testcase_30 AC 73 ms
94,080 KB
testcase_31 AC 69 ms
93,568 KB
testcase_32 AC 70 ms
93,312 KB
testcase_33 AC 74 ms
94,336 KB
testcase_34 AC 74 ms
94,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

se = set()
tot = 0
for a in A:
    tot += a
    se.add(tot)
    
cand = []
for i in range(1, int(tot ** 0.5 + 1)):
    if tot % i == 0:
        cand.append(i)
        if i != tot // i:
            cand.append(tot // i)
cand.sort()
for c in cand:
    if tot // c > n:
        continue
    ok = True
    for i in range(c, tot + 1, c):
        if i not in se:
            ok = False
            break
    if ok:
        print(tot // c)
        break
0