結果

問題 No.944 煎っぞ!
ユーザー neterukunneterukun
提出日時 2019-12-09 01:17:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-10 23:33:50
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
78,208 KB
testcase_01 AC 65 ms
78,336 KB
testcase_02 AC 65 ms
78,464 KB
testcase_03 AC 62 ms
78,336 KB
testcase_04 AC 62 ms
78,592 KB
testcase_05 AC 60 ms
78,012 KB
testcase_06 AC 60 ms
78,336 KB
testcase_07 AC 61 ms
78,528 KB
testcase_08 AC 62 ms
78,336 KB
testcase_09 AC 58 ms
78,080 KB
testcase_10 AC 42 ms
59,648 KB
testcase_11 AC 46 ms
63,360 KB
testcase_12 AC 48 ms
62,208 KB
testcase_13 AC 36 ms
52,480 KB
testcase_14 AC 46 ms
63,616 KB
testcase_15 AC 43 ms
61,440 KB
testcase_16 AC 35 ms
52,352 KB
testcase_17 AC 35 ms
52,352 KB
testcase_18 AC 47 ms
64,000 KB
testcase_19 AC 45 ms
63,104 KB
testcase_20 AC 60 ms
79,232 KB
testcase_21 AC 61 ms
79,360 KB
testcase_22 AC 60 ms
77,952 KB
testcase_23 AC 60 ms
78,592 KB
testcase_24 AC 60 ms
78,592 KB
testcase_25 AC 59 ms
78,592 KB
testcase_26 AC 60 ms
78,080 KB
testcase_27 AC 63 ms
78,976 KB
testcase_28 AC 39 ms
52,736 KB
testcase_29 AC 40 ms
52,736 KB
testcase_30 AC 61 ms
78,936 KB
testcase_31 AC 59 ms
78,080 KB
testcase_32 AC 60 ms
78,840 KB
testcase_33 AC 62 ms
79,872 KB
testcase_34 AC 63 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    """自然数nの約数を列挙したリストを出力する
    計算量: O(sqrt(N))
    入出力例: 12 -> [1, 2, 3, 4, 6, 12]
    """
    divisors = []
    for k in range(1, int(n**0.5) + 1):
        if n % k == 0:
            divisors.append(k)
            if k != n // k:
                divisors.append(n // k)
    divisors = sorted(divisors)
    return divisors


n = int(input())
a = list(map(int, input().split()))


sum_a = sum(a)
div = make_divisors(sum_a)

for num in div:
    sum_ = 0
    tmp_ans = 0
    for i in range(n):
        sum_ += a[i]
        if sum_ > num:
            break
        if sum_ == num:
            tmp_ans += 1
            sum_ = 0
    else:
        print(tmp_ans)
        exit()
0