結果

問題 No.944 煎っぞ!
ユーザー rlangevinrlangevin
提出日時 2023-01-12 12:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 3,000 ms
コード長 479 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 96,460 KB
最終ジャッジ日時 2024-06-02 09:53:17
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
95,624 KB
testcase_01 AC 68 ms
93,868 KB
testcase_02 AC 69 ms
94,368 KB
testcase_03 AC 68 ms
94,284 KB
testcase_04 AC 67 ms
94,612 KB
testcase_05 AC 67 ms
94,660 KB
testcase_06 AC 67 ms
94,564 KB
testcase_07 AC 66 ms
94,816 KB
testcase_08 AC 66 ms
94,864 KB
testcase_09 AC 65 ms
95,084 KB
testcase_10 AC 40 ms
59,520 KB
testcase_11 AC 43 ms
66,796 KB
testcase_12 AC 41 ms
62,748 KB
testcase_13 AC 34 ms
53,172 KB
testcase_14 AC 41 ms
67,040 KB
testcase_15 AC 37 ms
61,652 KB
testcase_16 AC 33 ms
52,408 KB
testcase_17 AC 33 ms
52,624 KB
testcase_18 AC 41 ms
65,868 KB
testcase_19 AC 42 ms
66,756 KB
testcase_20 AC 67 ms
96,460 KB
testcase_21 AC 68 ms
95,152 KB
testcase_22 AC 65 ms
94,812 KB
testcase_23 AC 65 ms
95,488 KB
testcase_24 AC 64 ms
94,004 KB
testcase_25 AC 66 ms
94,152 KB
testcase_26 AC 66 ms
94,128 KB
testcase_27 AC 69 ms
95,728 KB
testcase_28 AC 33 ms
53,632 KB
testcase_29 AC 33 ms
53,008 KB
testcase_30 AC 67 ms
94,956 KB
testcase_31 AC 69 ms
95,380 KB
testcase_32 AC 68 ms
94,540 KB
testcase_33 AC 70 ms
95,108 KB
testcase_34 AC 70 ms
94,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    i = 1
    SS = set()
    while i * i <= n:
        if n % i == 0:
            SS.add(i)
            SS.add(n//i)
        i += 1
    return SS    


N = int(input())
A = list(map(int, input().split()))
Ac = [0] * (N + 1)
for i in range(N):
    Ac[i + 1] = Ac[i] + A[i]
S = set(Ac)
ans = 0
M = Ac[-1]
for d in div(M):
    now = d
    for v in range(M//d):
        if now not in S:
            break
        now += d
    else:
        ans = max(ans, M//d)
print(ans)
0