結果

問題 No.2538 2進元ゲーム
ユーザー ゼットゼット
提出日時 2023-11-11 08:46:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 627 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 94,468 KB
最終ジャッジ日時 2024-09-26 02:38:42
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,320 KB
testcase_01 AC 34 ms
52,440 KB
testcase_02 AC 34 ms
53,072 KB
testcase_03 AC 35 ms
52,912 KB
testcase_04 AC 34 ms
52,196 KB
testcase_05 AC 35 ms
52,136 KB
testcase_06 AC 36 ms
53,548 KB
testcase_07 AC 35 ms
52,488 KB
testcase_08 AC 40 ms
52,492 KB
testcase_09 RE -
testcase_10 AC 34 ms
52,500 KB
testcase_11 AC 35 ms
53,072 KB
testcase_12 AC 35 ms
53,580 KB
testcase_13 AC 34 ms
52,556 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 34 ms
52,736 KB
testcase_26 AC 34 ms
53,072 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 196 ms
93,328 KB
testcase_33 AC 193 ms
93,320 KB
testcase_34 AC 176 ms
93,544 KB
testcase_35 AC 66 ms
89,852 KB
testcase_36 AC 151 ms
93,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
count=0
A=list(map(int,input().split()))
for i in range(N):
  if A[i]<0:
    count+=1
if count>=2:
  P=[0]
  print(P[1])
  print(0)
elif count==1:
  print(1)
else:
  grandy=[0]*64
  for x in range(1,64):
    B=set()
    for k in range(10):
      if (x>>k)&1:
        B.add(grandy[k])
    for y in range(64):
      if not y in B:
        grandy[x]=y
        break
  result=0
  for i in range(N):
    x=A[i]
    B=set()
    for k in range(64):
      if (x>>k)&1:
        B.add(grandy[k])
    for y in range(64):
      if not y in B:
        result^=y
        break
  if result==0:
    print(2)
  else:
    print(1)
0