結果

問題 No.944 煎っぞ!
ユーザー chinchillachinchilla
提出日時 2020-01-12 12:55:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 3,000 ms
コード長 238 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,904 KB
最終ジャッジ日時 2024-11-28 19:01:43
合計ジャッジ時間 4,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
20,732 KB
testcase_01 AC 85 ms
20,884 KB
testcase_02 AC 85 ms
20,800 KB
testcase_03 AC 85 ms
20,888 KB
testcase_04 AC 85 ms
20,744 KB
testcase_05 AC 85 ms
20,792 KB
testcase_06 AC 84 ms
20,904 KB
testcase_07 AC 85 ms
20,724 KB
testcase_08 AC 86 ms
20,744 KB
testcase_09 AC 85 ms
20,784 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 44 ms
14,584 KB
testcase_12 AC 36 ms
12,032 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 42 ms
14,452 KB
testcase_15 AC 35 ms
11,904 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 43 ms
14,456 KB
testcase_19 AC 43 ms
14,452 KB
testcase_20 AC 93 ms
20,820 KB
testcase_21 AC 92 ms
20,832 KB
testcase_22 AC 84 ms
20,740 KB
testcase_23 AC 83 ms
20,712 KB
testcase_24 AC 84 ms
20,816 KB
testcase_25 AC 83 ms
20,712 KB
testcase_26 AC 83 ms
20,872 KB
testcase_27 AC 90 ms
20,776 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 94 ms
20,824 KB
testcase_31 AC 84 ms
20,720 KB
testcase_32 AC 78 ms
20,820 KB
testcase_33 AC 88 ms
20,784 KB
testcase_34 AC 86 ms
20,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
input()
a = [int(w) for w in input().split(" ")]
t = sum(a)
s = set(accumulate(a))
print(next(r for r in range(t // max(a), 0, -1)
             if t % r == 0 and all(p in s for p in range(t//r, t, t//r))))
0