結果
問題 | No.944 煎っぞ! |
ユーザー | norioc |
提出日時 | 2024-07-02 20:44:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 320 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 107,080 KB |
最終ジャッジ日時 | 2024-07-02 20:44:24 |
合計ジャッジ時間 | 4,310 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 42 ms
59,496 KB |
testcase_11 | AC | 50 ms
69,976 KB |
testcase_12 | AC | 44 ms
63,360 KB |
testcase_13 | AC | 38 ms
52,616 KB |
testcase_14 | WA | - |
testcase_15 | AC | 43 ms
63,136 KB |
testcase_16 | AC | 38 ms
51,816 KB |
testcase_17 | AC | 37 ms
52,356 KB |
testcase_18 | AC | 51 ms
69,376 KB |
testcase_19 | AC | 50 ms
69,048 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 77 ms
103,160 KB |
testcase_28 | AC | 36 ms
52,000 KB |
testcase_29 | AC | 37 ms
52,792 KB |
testcase_30 | WA | - |
testcase_31 | AC | 78 ms
102,640 KB |
testcase_32 | AC | 77 ms
102,668 KB |
testcase_33 | AC | 79 ms
103,420 KB |
testcase_34 | AC | 79 ms
102,696 KB |
ソースコード
from itertools import accumulate N = int(input()) A = list(map(int, input().split())) acc = list(accumulate(A)) tot = sum(A) st = set(acc) for b in acc: # 作られる数列の要素 for x in range(b+b, tot, b): if x not in st: break else: print(tot // b) exit() print(1)