結果

問題 No.2538 2進元ゲーム
ユーザー 👑 p-adicp-adic
提出日時 2023-04-30 20:54:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 98,540 KB
最終ジャッジ日時 2024-07-23 15:46:48
合計ジャッジ時間 7,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,444 KB
testcase_01 AC 38 ms
53,164 KB
testcase_02 AC 38 ms
53,084 KB
testcase_03 AC 37 ms
53,436 KB
testcase_04 AC 37 ms
53,660 KB
testcase_05 AC 38 ms
52,384 KB
testcase_06 AC 38 ms
52,616 KB
testcase_07 AC 37 ms
53,620 KB
testcase_08 AC 37 ms
52,808 KB
testcase_09 AC 37 ms
52,596 KB
testcase_10 AC 38 ms
53,084 KB
testcase_11 AC 38 ms
52,744 KB
testcase_12 AC 40 ms
51,824 KB
testcase_13 AC 38 ms
53,088 KB
testcase_14 AC 37 ms
52,264 KB
testcase_15 AC 38 ms
52,280 KB
testcase_16 AC 38 ms
53,784 KB
testcase_17 AC 37 ms
52,940 KB
testcase_18 AC 38 ms
52,084 KB
testcase_19 AC 37 ms
52,884 KB
testcase_20 AC 38 ms
52,132 KB
testcase_21 AC 37 ms
52,324 KB
testcase_22 AC 38 ms
52,756 KB
testcase_23 AC 38 ms
52,964 KB
testcase_24 AC 38 ms
52,068 KB
testcase_25 AC 38 ms
52,264 KB
testcase_26 AC 38 ms
52,716 KB
testcase_27 AC 44 ms
61,900 KB
testcase_28 AC 56 ms
73,388 KB
testcase_29 AC 82 ms
76,072 KB
testcase_30 AC 263 ms
77,016 KB
testcase_31 AC 1,883 ms
91,752 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#遅めの解法(O(T log_2(lfloor log_2 (max {2,N}) rfloor !))解)チェック
#Pythonでは通らない
def g(n):
	f=[0]*60
	d=0
	m=n
	while m!=0:
		if m%2==1:f[g(d)]=1
		d+=1
		m>>=1
	a=0
	while f[a]==1:a+=1
	return a
i=input
N=range(int(i()))
e=1
a=0
A=i().split()
for n in N:
	B=int(A[n])
	if B<0:e=1-e
	else:a^=g(B)
print(2 if e==1 and a==0 else 1)
0