結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 p-adicp-adic
提出日時 2023-05-01 02:38:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,624 KB
平均クエリ数 668.59
最終ジャッジ日時 2024-11-20 04:41:46
合計ジャッジ時間 26,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
27,336 KB
testcase_01 AC 326 ms
27,600 KB
testcase_02 AC 355 ms
27,984 KB
testcase_03 AC 183 ms
27,472 KB
testcase_04 AC 54 ms
27,472 KB
testcase_05 AC 61 ms
27,856 KB
testcase_06 AC 62 ms
27,600 KB
testcase_07 AC 61 ms
27,472 KB
testcase_08 AC 311 ms
27,728 KB
testcase_09 AC 56 ms
27,344 KB
testcase_10 AC 66 ms
27,216 KB
testcase_11 AC 354 ms
27,720 KB
testcase_12 AC 266 ms
27,976 KB
testcase_13 AC 53 ms
27,592 KB
testcase_14 AC 59 ms
27,592 KB
testcase_15 AC 56 ms
27,208 KB
testcase_16 AC 259 ms
27,856 KB
testcase_17 AC 114 ms
27,472 KB
testcase_18 AC 680 ms
28,624 KB
testcase_19 AC 55 ms
27,472 KB
testcase_20 AC 60 ms
27,344 KB
testcase_21 AC 96 ms
27,736 KB
testcase_22 AC 78 ms
27,480 KB
testcase_23 AC 75 ms
27,352 KB
testcase_24 AC 71 ms
27,736 KB
testcase_25 AC 173 ms
27,352 KB
testcase_26 AC 699 ms
27,592 KB
testcase_27 AC 84 ms
27,592 KB
testcase_28 AC 151 ms
27,592 KB
testcase_29 AC 54 ms
27,592 KB
testcase_30 AC 52 ms
27,464 KB
testcase_31 AC 53 ms
27,336 KB
testcase_32 AC 97 ms
27,592 KB
evil_2_big_1.txt TLE -
evil_2_big_2.txt TLE -
evil_2_big_3.txt TLE -
evil_big_1.txt TLE -
evil_big_2.txt TLE -
evil_big_3.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
J=int
P=print
N=J(I())
T=I().split()
A={}
s=0
for i in range(N):
	a=J(T[i])
	A[i+1]=a
	s^=a
t=min(s,1)
P(t)
while len(A)!=0:
	if t==0:
		T=I().split()
		i=J(T[0])
		k=J(T[1])
		s=A[i]
		if s==k:del(A[i])
		else:
			A[i]-=k
			s^=s-k
	else:
		m=0
		L=list(A)
		for i in L:
			a=A[i]
			d=a-(a^s)
			if d==a:
				P(i,a)
				del(A[i])
				m=-1
				break;
			if m<d:
				m=d
				j=i
		if m!=-1:
			print(j,m)
			A[j]=A[j]^s
	r=J(I())
	if r==-1:exit(0)
	t=1-t
0