結果

問題 No.944 煎っぞ!
ユーザー rlangevinrlangevin
提出日時 2023-01-12 12:36:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 462 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 96,608 KB
最終ジャッジ日時 2024-06-02 09:52:00
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 64 ms
93,824 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 64 ms
94,080 KB
testcase_06 WA -
testcase_07 AC 64 ms
94,080 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
62,080 KB
testcase_13 AC 32 ms
51,712 KB
testcase_14 AC 40 ms
66,304 KB
testcase_15 WA -
testcase_16 AC 33 ms
51,968 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 42 ms
66,176 KB
testcase_19 WA -
testcase_20 AC 67 ms
95,116 KB
testcase_21 AC 65 ms
95,104 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 66 ms
95,232 KB
testcase_32 AC 63 ms
94,192 KB
testcase_33 WA -
testcase_34 AC 68 ms
94,848 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
    else:
        ans = max(ans, M//d)
print(ans)
0