結果

問題 No.944 煎っぞ!
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-17 13:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 3,000 ms
コード長 409 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-09-20 06:59:31
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
79,232 KB
testcase_01 AC 64 ms
79,488 KB
testcase_02 AC 65 ms
78,720 KB
testcase_03 AC 64 ms
79,104 KB
testcase_04 AC 64 ms
78,976 KB
testcase_05 AC 63 ms
78,208 KB
testcase_06 AC 65 ms
78,976 KB
testcase_07 AC 64 ms
78,976 KB
testcase_08 AC 66 ms
79,616 KB
testcase_09 AC 63 ms
79,044 KB
testcase_10 AC 42 ms
59,136 KB
testcase_11 AC 49 ms
64,256 KB
testcase_12 AC 48 ms
62,464 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 49 ms
64,384 KB
testcase_15 AC 45 ms
61,824 KB
testcase_16 AC 35 ms
51,584 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 50 ms
64,512 KB
testcase_19 AC 49 ms
64,512 KB
testcase_20 AC 63 ms
79,616 KB
testcase_21 AC 64 ms
80,000 KB
testcase_22 AC 62 ms
79,616 KB
testcase_23 AC 64 ms
78,848 KB
testcase_24 AC 64 ms
79,232 KB
testcase_25 AC 62 ms
79,104 KB
testcase_26 AC 61 ms
78,592 KB
testcase_27 AC 64 ms
79,488 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 37 ms
51,456 KB
testcase_30 AC 63 ms
79,616 KB
testcase_31 AC 60 ms
77,568 KB
testcase_32 AC 62 ms
78,720 KB
testcase_33 AC 67 ms
80,384 KB
testcase_34 AC 67 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
s = sum(A)
for i in range(n):
    if s%(n-i) != 0:
        continue
    p = s//(n-i)
    #print(p)
    cur = 0
    flag = True
    for j in range(n):
        if cur+A[j]>p:
            flag=False
            break
        elif cur+A[j] == p:
            cur = 0
        else:
            cur += A[j]
    if flag:
        ans = i
        break
print(n-ans)
0