結果

問題 No.1219 Mancala Combo
ユーザー anagohirameanagohirame
提出日時 2020-06-26 14:18:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 268 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 163,072 KB
最終ジャッジ日時 2024-11-24 11:15:02
合計ジャッジ時間 37,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,216 KB
testcase_01 AC 34 ms
147,456 KB
testcase_02 AC 35 ms
57,216 KB
testcase_03 AC 35 ms
147,840 KB
testcase_04 AC 47 ms
67,968 KB
testcase_05 AC 46 ms
155,136 KB
testcase_06 AC 46 ms
67,328 KB
testcase_07 AC 45 ms
161,152 KB
testcase_08 AC 43 ms
66,816 KB
testcase_09 AC 33 ms
143,020 KB
testcase_10 AC 34 ms
56,960 KB
testcase_11 AC 43 ms
155,776 KB
testcase_12 AC 41 ms
66,048 KB
testcase_13 AC 44 ms
163,072 KB
testcase_14 AC 34 ms
57,472 KB
testcase_15 AC 33 ms
142,976 KB
testcase_16 AC 33 ms
57,728 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import exit
n = int(input())
a = list(map(int, input().split()))

s = sum(a)
for _ in range(s):
	for i, x in enumerate(a):
		if x == i+1:
			cur = i
			a[cur] = 0
			break
	else:
		print("No")
		exit()
	for i in range(cur-1, -1, -1):
		a[i] += 1

print("Yes")
0