結果

問題 No.2165 Let's Play Nim!
ユーザー harurunharurun
提出日時 2022-12-16 12:11:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,976 KB
平均クエリ数 12.10
最終ジャッジ日時 2024-04-27 14:40:11
合計ジャッジ時間 9,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
27,336 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
testcase_17 RE -
testcase_18 WA -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 46 ms
26,952 KB
testcase_31 AC 48 ms
27,072 KB
testcase_32 WA -
evil_2_big_1.txt RE -
evil_2_big_2.txt TLE -
evil_2_big_3.txt RE -
evil_big_1.txt WA -
evil_big_2.txt RE -
evil_big_3.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N=int(input())
  A=list(map(int,input().split()))
  def f():
    t=0
    for i in A:
      t^=i
    c=0
    m=-1
    d=0
    while t>0:
      if (t&1):
        m=c
        d+=(1<<c)
      c+=1
      t>>=1
    for i in range(len(A)):
      if (A[i]>>m)&1 and A[i]>=d:
        A[i]-=d
        return [i+1,d]
  s=0
  for i in A:
    s^=i
  if s!=0:
    print(1,flush=True)
    print(*f(),flush=True)
    r=int(input())
    if r==-1:
      return
  else:
    print(0,flush=True)
  while 1:
    a,b=map(int,input().split())
    A[a-1]-=b
    r=int(input())
    if r==-1:
      return
    print(*f(),flush=True)
    r=int(input())
    if r==-1:
      return
  return

main()

    
0