結果

問題 No.944 煎っぞ!
ユーザー syunsukesyunsuke
提出日時 2020-09-16 22:06:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 3,000 ms
コード長 491 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 103,480 KB
最終ジャッジ日時 2024-06-22 03:38:59
合計ジャッジ時間 4,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
101,864 KB
testcase_01 AC 82 ms
101,816 KB
testcase_02 AC 86 ms
101,968 KB
testcase_03 AC 83 ms
102,636 KB
testcase_04 AC 83 ms
102,032 KB
testcase_05 AC 83 ms
102,704 KB
testcase_06 AC 82 ms
102,488 KB
testcase_07 AC 83 ms
102,464 KB
testcase_08 AC 82 ms
102,388 KB
testcase_09 AC 82 ms
101,940 KB
testcase_10 AC 44 ms
59,880 KB
testcase_11 AC 50 ms
68,348 KB
testcase_12 AC 47 ms
64,444 KB
testcase_13 AC 37 ms
52,496 KB
testcase_14 AC 49 ms
68,724 KB
testcase_15 AC 45 ms
64,772 KB
testcase_16 AC 38 ms
52,652 KB
testcase_17 AC 37 ms
53,284 KB
testcase_18 AC 50 ms
68,916 KB
testcase_19 AC 50 ms
68,164 KB
testcase_20 AC 85 ms
103,320 KB
testcase_21 AC 84 ms
103,112 KB
testcase_22 AC 81 ms
102,516 KB
testcase_23 AC 81 ms
101,632 KB
testcase_24 AC 82 ms
102,616 KB
testcase_25 AC 81 ms
102,116 KB
testcase_26 AC 80 ms
102,384 KB
testcase_27 AC 82 ms
101,448 KB
testcase_28 AC 37 ms
53,060 KB
testcase_29 AC 37 ms
53,024 KB
testcase_30 AC 83 ms
103,084 KB
testcase_31 AC 83 ms
103,044 KB
testcase_32 AC 82 ms
102,984 KB
testcase_33 AC 87 ms
103,300 KB
testcase_34 AC 87 ms
103,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a=list(map(int,input().split()))
SA=sum(a)
L=[]
F=0
for i in range(1,int(SA**0.5)+1):
    if SA%i==0:
        L.append(i)
        L.append(SA//i)
L=set(L)
L=list(L)
L.sort()
#print(L)
#print(a)
R=[0]
D={}
for i in range(N):
    D[R[-1]+a[i]]=1
    R.append(R[-1]+a[i])
    
#print(L)
for l in L:
    F=0
    for i in range(1,SA+1):
        if l*i>SA:
            break
        if l*i not in D:
            F=1
            break
    if F==0:
        print(SA//l)
        exit()
0