結果

問題 No.944 煎っぞ!
ユーザー zer0zer0
提出日時 2020-01-13 18:31:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 587 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 47,044 KB
最終ジャッジ日時 2024-12-21 10:48:17
合計ジャッジ時間 38,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,597 ms
45,924 KB
testcase_01 AC 908 ms
45,508 KB
testcase_02 AC 731 ms
45,756 KB
testcase_03 AC 792 ms
45,628 KB
testcase_04 AC 1,683 ms
45,636 KB
testcase_05 AC 618 ms
45,640 KB
testcase_06 AC 656 ms
45,884 KB
testcase_07 AC 800 ms
45,764 KB
testcase_08 AC 1,543 ms
45,888 KB
testcase_09 AC 651 ms
45,628 KB
testcase_10 AC 519 ms
44,220 KB
testcase_11 AC 700 ms
44,228 KB
testcase_12 AC 635 ms
43,968 KB
testcase_13 AC 516 ms
44,344 KB
testcase_14 AC 720 ms
43,960 KB
testcase_15 AC 628 ms
44,348 KB
testcase_16 AC 511 ms
43,968 KB
testcase_17 AC 513 ms
44,220 KB
testcase_18 AC 716 ms
44,352 KB
testcase_19 AC 721 ms
43,832 KB
testcase_20 AC 732 ms
46,648 KB
testcase_21 AC 749 ms
46,140 KB
testcase_22 AC 743 ms
45,756 KB
testcase_23 AC 1,036 ms
46,140 KB
testcase_24 AC 1,947 ms
45,636 KB
testcase_25 AC 791 ms
46,012 KB
testcase_26 AC 828 ms
45,624 KB
testcase_27 TLE -
testcase_28 AC 523 ms
44,224 KB
testcase_29 AC 514 ms
43,840 KB
testcase_30 AC 1,039 ms
47,044 KB
testcase_31 AC 1,236 ms
45,768 KB
testcase_32 AC 886 ms
45,884 KB
testcase_33 AC 1,457 ms
45,888 KB
testcase_34 AC 1,318 ms
46,392 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)
ruia = [0] * (N + 1)
for i in range(N):
    ruia[i + 1] = a[i] + ruia[i]

ans = 0
for i in divlst:
    tmp = totala // i
    cnt = 0
    for j in ruia[1:]:
        if j % i == 0:
            cnt += 1

    if tmp == cnt:
        ans = max(ans, cnt)

print(ans)
0