結果

問題 No.944 煎っぞ!
ユーザー KodaiKodai
提出日時 2020-04-30 17:17:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 3,000 ms
コード長 615 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-05-09 14:36:50
合計ジャッジ時間 3,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
78,656 KB
testcase_01 AC 58 ms
78,540 KB
testcase_02 AC 60 ms
79,104 KB
testcase_03 AC 58 ms
78,208 KB
testcase_04 AC 60 ms
78,336 KB
testcase_05 AC 58 ms
78,208 KB
testcase_06 AC 61 ms
78,848 KB
testcase_07 AC 60 ms
78,464 KB
testcase_08 AC 60 ms
78,592 KB
testcase_09 AC 59 ms
78,336 KB
testcase_10 AC 42 ms
59,648 KB
testcase_11 AC 46 ms
64,000 KB
testcase_12 AC 45 ms
61,056 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 46 ms
63,616 KB
testcase_15 AC 44 ms
61,056 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 45 ms
63,744 KB
testcase_19 AC 46 ms
63,616 KB
testcase_20 AC 61 ms
79,232 KB
testcase_21 AC 60 ms
79,232 KB
testcase_22 AC 59 ms
78,208 KB
testcase_23 AC 59 ms
78,464 KB
testcase_24 AC 59 ms
78,464 KB
testcase_25 AC 60 ms
78,592 KB
testcase_26 AC 59 ms
78,208 KB
testcase_27 AC 60 ms
79,232 KB
testcase_28 AC 36 ms
52,608 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 62 ms
79,744 KB
testcase_31 AC 59 ms
77,952 KB
testcase_32 AC 59 ms
78,592 KB
testcase_33 AC 63 ms
79,344 KB
testcase_34 AC 63 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a_list = list(map(int, input().split()))
a_sum = sum(a_list)
a_max = max(a_list)
div_list = []
for i in range(1, int(a_sum**0.5) + 1):
    if a_sum % i == 0:
        if i >= a_max:
            div_list.append(i)
        if i != a_sum // i:
            if (a_sum // i) >= a_max:
                div_list.append(a_sum // i)

div_list.sort()

for div in div_list:
    end = True
    count = 0
    for a in a_list:
        count += a
        if count > div:
            end = False
            break
        elif count == div:
            count = 0
    if end:
        print(a_sum // div)
        break
0