結果

問題 No.1219 Mancala Combo
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-15 14:19:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 105,332 KB
最終ジャッジ日時 2024-06-08 01:14:09
合計ジャッジ時間 3,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 40 ms
55,048 KB
testcase_02 AC 40 ms
55,104 KB
testcase_03 AC 39 ms
55,172 KB
testcase_04 AC 40 ms
56,032 KB
testcase_05 AC 40 ms
55,192 KB
testcase_06 AC 43 ms
54,776 KB
testcase_07 AC 40 ms
54,724 KB
testcase_08 AC 40 ms
54,448 KB
testcase_09 AC 39 ms
55,080 KB
testcase_10 AC 39 ms
54,136 KB
testcase_11 AC 41 ms
55,168 KB
testcase_12 AC 41 ms
54,432 KB
testcase_13 AC 40 ms
54,364 KB
testcase_14 AC 40 ms
55,856 KB
testcase_15 AC 40 ms
55,104 KB
testcase_16 AC 41 ms
55,960 KB
testcase_17 AC 68 ms
91,632 KB
testcase_18 AC 75 ms
92,284 KB
testcase_19 AC 67 ms
86,940 KB
testcase_20 AC 77 ms
95,444 KB
testcase_21 AC 64 ms
84,088 KB
testcase_22 AC 75 ms
89,884 KB
testcase_23 AC 75 ms
98,628 KB
testcase_24 AC 65 ms
86,196 KB
testcase_25 AC 64 ms
87,660 KB
testcase_26 AC 73 ms
92,744 KB
testcase_27 AC 79 ms
103,340 KB
testcase_28 AC 89 ms
105,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n,a):
	while True:
		flg=False
		for i in range(n):
			if a[i]==i+1:
				a[i]=0
				flg=True
				break
			else:
				a[i]+=1
		if not flg:
			if a==[1]*n:return True
			return False
def main1(n,a):
	ary=[0]*n
	cnt=0
	for i in range(n-1,-1,-1):
		x=a[i]
		if (x+cnt)%(i+1)!=0 or x>i+1:
			return False
		cnt+=(x+cnt)//(i+1)
	return True

if __name__=='__main__':
	n=int(input())
	a=list(map(int,input().split()))
	#ret0=main0(n,a[:])
	#print("Yes" if ret0 else "No")
	ret1=main1(n,a)
	print("Yes" if ret1 else "No")
from random import randint
if __name__=='__main__1':
	for _ in range(500):
		n=randint(2,20)
		a=[randint(0,n) for _ in range(n)]
		if all(x==0 for x in a):continue
		ret0=main0(n,a[:])
		ret1=main1(n,a)
		if ret0!=ret1:
			print(n)
			print(*a)
			print(ret0,ret1)
			break
0