結果
問題 |
No.944 煎っぞ!
|
ユーザー |
![]() |
提出日時 | 2020-01-12 12:55:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
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))))