結果

問題 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  
実行時間 620 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,856 KB
平均クエリ数 668.59
最終ジャッジ日時 2024-04-30 10:34:03
合計ジャッジ時間 25,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
27,592 KB
testcase_01 AC 285 ms
27,344 KB
testcase_02 AC 324 ms
27,472 KB
testcase_03 AC 158 ms
27,088 KB
testcase_04 AC 45 ms
27,600 KB
testcase_05 AC 51 ms
27,216 KB
testcase_06 AC 49 ms
27,216 KB
testcase_07 AC 47 ms
27,216 KB
testcase_08 AC 263 ms
27,600 KB
testcase_09 AC 45 ms
27,216 KB
testcase_10 AC 55 ms
26,824 KB
testcase_11 AC 311 ms
27,720 KB
testcase_12 AC 230 ms
27,720 KB
testcase_13 AC 43 ms
27,336 KB
testcase_14 AC 51 ms
27,336 KB
testcase_15 AC 46 ms
27,592 KB
testcase_16 AC 227 ms
27,728 KB
testcase_17 AC 100 ms
27,344 KB
testcase_18 AC 610 ms
27,856 KB
testcase_19 AC 45 ms
27,216 KB
testcase_20 AC 50 ms
27,216 KB
testcase_21 AC 81 ms
27,352 KB
testcase_22 AC 67 ms
27,376 KB
testcase_23 AC 62 ms
27,352 KB
testcase_24 AC 59 ms
27,224 KB
testcase_25 AC 156 ms
27,608 KB
testcase_26 AC 620 ms
27,464 KB
testcase_27 AC 70 ms
27,464 KB
testcase_28 AC 131 ms
27,464 KB
testcase_29 AC 44 ms
27,336 KB
testcase_30 AC 42 ms
27,592 KB
testcase_31 AC 44 ms
27,080 KB
testcase_32 AC 81 ms
27,336 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