結果

問題 No.850 企業コンテスト2位
ユーザー vwxyzvwxyz
提出日時 2023-12-26 08:08:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,728 KB
平均クエリ数 200.07
最終ジャッジ日時 2024-09-27 15:03:20
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
player=[x for x in range(N)]
opponent=[[] for x in range(N)]
while len(player)>=2:
    prev=player
    player=[]
    while len(prev)>=2:
        x,y=prev.pop(),prev.pop()
        print("?",x+1,y+1)
        ans=int(input())-1
        player.append(ans)
        opponent[ans].append(x^y^ans)
    if prev:
        player.append(prev.pop())
first=player[0]
player=opponent[first]
while len(player)>=2:
    prev=player
    player=[]
    while len(prev)>=2:
        x,y=prev.pop(),prev.pop()
        print("?",x+1,y+1)
        ans=int(input())-1
        player.append(ans)
    if prev:
        player.append(prev.pop())
ans=player[0]
print("!",ans+1)
0