結果

問題 No.944 煎っぞ!
ユーザー noriocnorioc
提出日時 2024-07-02 20:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 3,000 ms
コード長 351 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 103,168 KB
最終ジャッジ日時 2024-07-02 20:51:55
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
101,888 KB
testcase_01 AC 70 ms
101,888 KB
testcase_02 AC 71 ms
102,272 KB
testcase_03 AC 72 ms
101,988 KB
testcase_04 AC 75 ms
102,016 KB
testcase_05 AC 72 ms
101,888 KB
testcase_06 AC 74 ms
102,784 KB
testcase_07 AC 91 ms
102,528 KB
testcase_08 AC 75 ms
102,016 KB
testcase_09 AC 75 ms
102,272 KB
testcase_10 AC 41 ms
58,240 KB
testcase_11 AC 51 ms
68,224 KB
testcase_12 AC 44 ms
62,592 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 49 ms
68,128 KB
testcase_15 AC 41 ms
62,208 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 47 ms
67,968 KB
testcase_19 AC 46 ms
66,944 KB
testcase_20 AC 78 ms
102,528 KB
testcase_21 AC 79 ms
102,784 KB
testcase_22 AC 79 ms
102,272 KB
testcase_23 AC 77 ms
102,016 KB
testcase_24 AC 91 ms
101,888 KB
testcase_25 AC 73 ms
102,144 KB
testcase_26 AC 72 ms
101,888 KB
testcase_27 AC 72 ms
101,504 KB
testcase_28 AC 33 ms
51,840 KB
testcase_29 AC 34 ms
51,584 KB
testcase_30 AC 76 ms
103,168 KB
testcase_31 AC 73 ms
102,528 KB
testcase_32 AC 74 ms
102,144 KB
testcase_33 AC 76 ms
102,272 KB
testcase_34 AC 78 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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:  # 作られる数列の要素
    if tot % b != 0: continue

    for x in range(b+b, tot, b):
        if x not in st:
            break
    else:
        print(tot // b)
        exit()

print(1)
0