結果

問題 No.944 煎っぞ!
ユーザー tails1434tails1434
提出日時 2020-01-02 08:41:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 3,000 ms
コード長 827 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 95,548 KB
最終ジャッジ日時 2024-11-22 17:36:49
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
88,452 KB
testcase_01 AC 67 ms
88,268 KB
testcase_02 AC 67 ms
88,284 KB
testcase_03 AC 66 ms
89,324 KB
testcase_04 AC 67 ms
88,572 KB
testcase_05 AC 65 ms
88,404 KB
testcase_06 AC 67 ms
88,512 KB
testcase_07 AC 66 ms
88,488 KB
testcase_08 AC 66 ms
89,436 KB
testcase_09 AC 67 ms
89,348 KB
testcase_10 AC 44 ms
59,736 KB
testcase_11 AC 48 ms
66,964 KB
testcase_12 AC 47 ms
63,736 KB
testcase_13 AC 39 ms
53,728 KB
testcase_14 AC 49 ms
67,044 KB
testcase_15 AC 46 ms
62,680 KB
testcase_16 AC 39 ms
53,624 KB
testcase_17 AC 39 ms
52,600 KB
testcase_18 AC 49 ms
65,648 KB
testcase_19 AC 47 ms
66,076 KB
testcase_20 AC 68 ms
90,076 KB
testcase_21 AC 69 ms
89,356 KB
testcase_22 AC 67 ms
89,152 KB
testcase_23 AC 68 ms
88,700 KB
testcase_24 AC 68 ms
89,400 KB
testcase_25 AC 67 ms
88,244 KB
testcase_26 AC 66 ms
88,320 KB
testcase_27 AC 70 ms
90,248 KB
testcase_28 AC 40 ms
52,588 KB
testcase_29 AC 39 ms
53,340 KB
testcase_30 AC 68 ms
88,668 KB
testcase_31 AC 121 ms
95,548 KB
testcase_32 AC 72 ms
91,424 KB
testcase_33 AC 73 ms
91,356 KB
testcase_34 AC 71 ms
90,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

def division(n):
    ass = []
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            ass.append(i)
            if i * i == n:
                continue
            ass.append(n // i)

    return ass

def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = [0] + list(accumulate(A))
    sumA = sum(A)
    div = division(sumA)
    ans = 0
    for n in div:
        index = 0
        flag = True
        cnt = 0
        for i in range(N + 1):
            if B[i] - B[index] == n:
                index = i
                cnt += 1
            elif B[i] - B[index] < n:
                continue
            else:
                break
        if cnt * n == sumA:
            ans = max(ans, cnt)

    print(ans)



if __name__ == "__main__":
    main()
0