結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
16,380 KB
testcase_01 AC 165 ms
16,464 KB
testcase_02 AC 187 ms
16,236 KB
testcase_03 AC 185 ms
16,328 KB
testcase_04 AC 280 ms
16,452 KB
testcase_05 AC 137 ms
16,460 KB
testcase_06 AC 169 ms
16,468 KB
testcase_07 AC 187 ms
16,452 KB
testcase_08 AC 269 ms
16,312 KB
testcase_09 AC 130 ms
16,460 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 56 ms
12,160 KB
testcase_12 AC 42 ms
11,392 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 72 ms
12,160 KB
testcase_15 AC 40 ms
11,264 KB
testcase_16 WA -
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 55 ms
12,160 KB
testcase_19 AC 55 ms
12,032 KB
testcase_20 AC 148 ms
17,020 KB
testcase_21 AC 159 ms
16,760 KB
testcase_22 AC 139 ms
16,144 KB
testcase_23 AC 148 ms
16,144 KB
testcase_24 AC 260 ms
16,144 KB
testcase_25 AC 150 ms
16,148 KB
testcase_26 AC 131 ms
16,020 KB
testcase_27 AC 134 ms
16,196 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 215 ms
17,388 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