結果

問題 No.944 煎っぞ!
ユーザー zer0zer0
提出日時 2020-01-13 17:38:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 620 ms / 3,000 ms
コード長 515 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,620 KB
最終ジャッジ日時 2024-12-21 07:59:28
合計ジャッジ時間 23,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
44,060 KB
testcase_01 AC 572 ms
44,188 KB
testcase_02 AC 614 ms
44,444 KB
testcase_03 AC 584 ms
43,940 KB
testcase_04 AC 614 ms
44,068 KB
testcase_05 AC 547 ms
44,064 KB
testcase_06 AC 553 ms
43,932 KB
testcase_07 AC 564 ms
44,312 KB
testcase_08 AC 601 ms
44,060 KB
testcase_09 AC 563 ms
43,928 KB
testcase_10 AC 475 ms
44,572 KB
testcase_11 AC 489 ms
44,312 KB
testcase_12 AC 538 ms
44,312 KB
testcase_13 AC 498 ms
44,440 KB
testcase_14 AC 526 ms
44,316 KB
testcase_15 AC 519 ms
44,428 KB
testcase_16 AC 495 ms
44,184 KB
testcase_17 AC 493 ms
44,448 KB
testcase_18 AC 524 ms
44,188 KB
testcase_19 AC 512 ms
44,316 KB
testcase_20 AC 566 ms
46,372 KB
testcase_21 AC 579 ms
46,492 KB
testcase_22 AC 548 ms
44,068 KB
testcase_23 AC 583 ms
44,196 KB
testcase_24 AC 620 ms
44,056 KB
testcase_25 AC 559 ms
44,060 KB
testcase_26 AC 561 ms
44,312 KB
testcase_27 AC 561 ms
46,620 KB
testcase_28 AC 545 ms
43,940 KB
testcase_29 AC 491 ms
44,060 KB
testcase_30 AC 605 ms
46,612 KB
testcase_31 AC 540 ms
44,192 KB
testcase_32 AC 541 ms
44,188 KB
testcase_33 AC 544 ms
44,448 KB
testcase_34 AC 578 ms
44,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def div(n):
    rlst = []
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            rlst.append(i)
            if i != n // i:
                rlst.append(n // i)
    rlst.sort()
    return rlst

N = int(input())
a = list(map(int, input().split()))
totala = np.sum(a)
divlst = div(totala)

for i in divlst:
    tmp = 0
    for j in a:
        tmp += j
        if tmp > i:
            break
        elif tmp == i:
            tmp = 0
    else:
        break

print(totala // i)
0