結果

問題 No.944 煎っぞ!
ユーザー matriematrie
提出日時 2020-12-25 09:50:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 3,000 ms
コード長 250 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,288 KB
最終ジャッジ日時 2024-09-22 02:38:20
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
13,012 KB
testcase_01 AC 91 ms
13,140 KB
testcase_02 AC 97 ms
13,264 KB
testcase_03 AC 95 ms
13,144 KB
testcase_04 AC 141 ms
13,152 KB
testcase_05 AC 80 ms
13,148 KB
testcase_06 AC 97 ms
13,144 KB
testcase_07 AC 104 ms
13,280 KB
testcase_08 AC 130 ms
13,144 KB
testcase_09 AC 80 ms
13,144 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 43 ms
11,776 KB
testcase_12 AC 34 ms
11,392 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 46 ms
11,904 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 41 ms
11,904 KB
testcase_19 AC 40 ms
12,032 KB
testcase_20 AC 94 ms
17,112 KB
testcase_21 AC 92 ms
17,104 KB
testcase_22 AC 80 ms
12,368 KB
testcase_23 AC 88 ms
12,496 KB
testcase_24 AC 130 ms
12,496 KB
testcase_25 AC 89 ms
12,500 KB
testcase_26 AC 81 ms
12,500 KB
testcase_27 AC 78 ms
16,140 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 28 ms
10,496 KB
testcase_30 AC 122 ms
17,288 KB
testcase_31 AC 82 ms
12,376 KB
testcase_32 AC 79 ms
12,500 KB
testcase_33 AC 79 ms
14,460 KB
testcase_34 AC 80 ms
14,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=list(map(int,input().split()))
t=sum(l)

k=1
d=[]
while k*k<=t:
	if t%k<1: d+=[k,t//k]
	k+=1
d=sorted(list(set(d)))

for m in d:
	b=c=0
	for j in range(n):
		b+=l[j]
		if b>m: break
		elif b==m: c+=1; b=0
	if c*m==t: print(c); break
0