結果

問題 No.944 煎っぞ!
ユーザー chinchillachinchilla
提出日時 2020-01-11 15:47:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 3,000 ms
コード長 234 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,348 KB
最終ジャッジ日時 2024-11-25 00:38:50
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,976 KB
testcase_01 AC 72 ms
12,728 KB
testcase_02 AC 70 ms
12,976 KB
testcase_03 AC 73 ms
12,980 KB
testcase_04 AC 87 ms
12,868 KB
testcase_05 AC 72 ms
12,856 KB
testcase_06 AC 79 ms
12,732 KB
testcase_07 AC 74 ms
13,116 KB
testcase_08 AC 77 ms
12,980 KB
testcase_09 AC 70 ms
12,984 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 35 ms
11,904 KB
testcase_12 AC 31 ms
11,264 KB
testcase_13 AC 26 ms
10,496 KB
testcase_14 AC 36 ms
11,776 KB
testcase_15 AC 30 ms
11,264 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 35 ms
11,904 KB
testcase_19 AC 34 ms
11,776 KB
testcase_20 AC 75 ms
16,792 KB
testcase_21 AC 76 ms
16,664 KB
testcase_22 AC 67 ms
12,484 KB
testcase_23 AC 71 ms
12,484 KB
testcase_24 AC 79 ms
12,608 KB
testcase_25 AC 70 ms
12,352 KB
testcase_26 AC 73 ms
12,356 KB
testcase_27 AC 69 ms
16,164 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 25 ms
10,496 KB
testcase_30 AC 76 ms
17,348 KB
testcase_31 AC 63 ms
12,488 KB
testcase_32 AC 66 ms
12,352 KB
testcase_33 AC 67 ms
14,572 KB
testcase_34 AC 67 ms
14,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split(" ")))
t = sum(a)
d = 0
for i in range(n):
	d += a[i]
	if t % d == 0:
		r = 0
		for b in a[i+1:]:
			r += b
			if r > d: break
			if r == d: r = 0
		if r == 0:
			print(t // d)
			break
0