結果

問題 No.944 煎っぞ!
ユーザー 👑 KazunKazun
提出日時 2020-11-17 23:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 3,000 ms
コード長 562 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-07-23 08:33:57
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
77,568 KB
testcase_01 AC 59 ms
78,208 KB
testcase_02 AC 59 ms
77,824 KB
testcase_03 AC 61 ms
77,824 KB
testcase_04 AC 59 ms
78,208 KB
testcase_05 AC 59 ms
78,224 KB
testcase_06 AC 59 ms
77,824 KB
testcase_07 AC 59 ms
77,532 KB
testcase_08 AC 60 ms
77,840 KB
testcase_09 AC 59 ms
77,696 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 47 ms
63,616 KB
testcase_12 AC 49 ms
62,080 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 50 ms
63,616 KB
testcase_15 AC 49 ms
61,568 KB
testcase_16 AC 38 ms
52,772 KB
testcase_17 AC 37 ms
54,324 KB
testcase_18 AC 47 ms
64,868 KB
testcase_19 AC 48 ms
63,104 KB
testcase_20 AC 60 ms
78,976 KB
testcase_21 AC 63 ms
78,976 KB
testcase_22 AC 62 ms
78,592 KB
testcase_23 AC 62 ms
78,720 KB
testcase_24 AC 63 ms
78,208 KB
testcase_25 AC 63 ms
78,592 KB
testcase_26 AC 61 ms
78,336 KB
testcase_27 AC 66 ms
79,744 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 60 ms
78,720 KB
testcase_31 AC 88 ms
79,616 KB
testcase_32 AC 66 ms
78,848 KB
testcase_33 AC 67 ms
80,256 KB
testcase_34 AC 66 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#約数全部
def Divisors(N):
    N=abs(N)
    L,U=[],[]
    k=1
    while k*k <=N:
        if N%k== 0:
            L.append(k)
            if k*k!=N:
                U.append(N//k)
        k+=1
    return L+U[::-1]

#================================================
N=int(input())
A=list(map(int,input().split()))

D=Divisors(sum(A))

K=0
for d in D:
    M=0
    X=0
    Flag=True
    for a in A:
        X+=a
        if X>d:
            Flag=False
            break
        elif X==d:
            X=0
            M+=1

    if Flag:
        K=max(K,M)
print(K)
0