結果

問題 No.944 煎っぞ!
ユーザー ttrttr
提出日時 2020-02-01 22:43:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,222 ms / 3,000 ms
コード長 387 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,248 KB
最終ジャッジ日時 2024-09-18 20:22:52
合計ジャッジ時間 9,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
13,144 KB
testcase_01 AC 229 ms
13,276 KB
testcase_02 AC 218 ms
13,144 KB
testcase_03 AC 220 ms
13,272 KB
testcase_04 AC 251 ms
13,156 KB
testcase_05 AC 199 ms
13,280 KB
testcase_06 AC 223 ms
13,152 KB
testcase_07 AC 222 ms
13,156 KB
testcase_08 AC 242 ms
13,144 KB
testcase_09 AC 202 ms
13,276 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 67 ms
11,904 KB
testcase_12 AC 41 ms
11,392 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 261 ms
11,904 KB
testcase_15 AC 40 ms
11,264 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 68 ms
12,032 KB
testcase_19 AC 64 ms
11,904 KB
testcase_20 AC 1,165 ms
17,248 KB
testcase_21 AC 1,221 ms
17,116 KB
testcase_22 AC 106 ms
12,504 KB
testcase_23 AC 115 ms
12,500 KB
testcase_24 AC 155 ms
12,508 KB
testcase_25 AC 115 ms
12,632 KB
testcase_26 AC 110 ms
12,500 KB
testcase_27 AC 92 ms
16,284 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 AC 1,222 ms
17,160 KB
testcase_31 AC 83 ms
12,504 KB
testcase_32 AC 82 ms
12,500 KB
testcase_33 AC 85 ms
14,460 KB
testcase_34 AC 86 ms
14,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]

SUM = sum(A)
i = max(A)
while i <= SUM:
    if SUM%i > 0:
        i += 1
        continue
    cnt = 0
    for j in range(N):
        if cnt < i:
            cnt += A[j]
        elif cnt == i:
            cnt = A[j]
        else:
            cnt = 0
            break
    if cnt == i:
        print(SUM//i)
        break
    i += 1
0