結果

問題 No.944 煎っぞ!
ユーザー jupirojupiro
提出日時 2020-02-10 14:37:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,384 KB
最終ジャッジ日時 2024-10-01 06:23:09
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
16,252 KB
testcase_01 AC 134 ms
16,460 KB
testcase_02 AC 151 ms
16,088 KB
testcase_03 AC 150 ms
16,456 KB
testcase_04 AC 213 ms
16,400 KB
testcase_05 AC 107 ms
16,332 KB
testcase_06 AC 140 ms
16,464 KB
testcase_07 AC 154 ms
16,568 KB
testcase_08 AC 200 ms
16,460 KB
testcase_09 AC 113 ms
16,460 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 45 ms
12,160 KB
testcase_12 AC 36 ms
11,520 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 57 ms
12,160 KB
testcase_15 AC 33 ms
11,264 KB
testcase_16 WA -
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 48 ms
12,160 KB
testcase_19 AC 46 ms
12,160 KB
testcase_20 AC 121 ms
16,768 KB
testcase_21 AC 136 ms
16,888 KB
testcase_22 AC 106 ms
16,140 KB
testcase_23 AC 122 ms
16,020 KB
testcase_24 AC 189 ms
16,148 KB
testcase_25 AC 115 ms
16,148 KB
testcase_26 AC 110 ms
16,144 KB
testcase_27 AC 120 ms
16,324 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 25 ms
10,880 KB
testcase_30 AC 176 ms
17,384 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sm = 0
d = []
for e in a:
    sm += e

for i in range(1, sm + 1):
    if(i * i > sm):
        break
    if sm % i == 0:
        d.append(i)
        if i != sm // i:
            d.append(sm/i)

d.sort(reverse = True)

for e in d:
    flag = True
    g = sm//e
    b = a.copy()
    for i in range(len(b)):
        if b[i] > g:
            flag = False
            break
        if b[i] < g and i != len(b) - 1:
            b[i + 1] += b[i]
    if flag :
        print(e)
        exit()
0