結果

問題 No.944 煎っぞ!
ユーザー 12354865271235486527
提出日時 2019-12-26 15:09:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 113 ms / 3,000 ms
コード長 456 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,368 KB
最終ジャッジ日時 2024-10-04 06:49:25
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
13,280 KB
testcase_01 AC 82 ms
13,284 KB
testcase_02 AC 93 ms
13,180 KB
testcase_03 AC 90 ms
13,152 KB
testcase_04 AC 113 ms
13,168 KB
testcase_05 AC 65 ms
13,288 KB
testcase_06 AC 79 ms
13,164 KB
testcase_07 AC 86 ms
13,168 KB
testcase_08 AC 106 ms
13,156 KB
testcase_09 AC 71 ms
13,156 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 36 ms
12,032 KB
testcase_12 AC 32 ms
11,264 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 41 ms
11,904 KB
testcase_15 AC 30 ms
11,264 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 35 ms
12,032 KB
testcase_19 AC 37 ms
12,032 KB
testcase_20 AC 79 ms
17,264 KB
testcase_21 AC 82 ms
17,124 KB
testcase_22 AC 66 ms
12,516 KB
testcase_23 AC 72 ms
12,644 KB
testcase_24 AC 111 ms
12,644 KB
testcase_25 AC 72 ms
12,520 KB
testcase_26 AC 67 ms
12,512 KB
testcase_27 AC 72 ms
16,304 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 26 ms
10,624 KB
testcase_30 AC 100 ms
17,368 KB
testcase_31 AC 60 ms
12,516 KB
testcase_32 AC 66 ms
12,512 KB
testcase_33 AC 65 ms
14,604 KB
testcase_34 AC 65 ms
14,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(N):
    ret = []
    c = int(N**0.5) + 1
    for i in range(1, c):
        if N % i == 0:
            ret.append(i)
            if N != i * i:
                ret.append(N//i)
    ret.sort()
    return ret

_ = int(input())
A = list(map(int, input().split()))
s = sum(A)
for d in divisor(s):
    n = 0
    for a in A:
        n += a
        if n > d:
            break
        elif n == d:
            n = 0
    else:
        break
print(s//d)
0