結果

問題 No.850 企業コンテスト2位
ユーザー chineristACchineristAC
提出日時 2020-10-19 18:34:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 80,108 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-17 07:11:20
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
72,012 KB
testcase_01 AC 65 ms
71,156 KB
testcase_02 AC 66 ms
71,008 KB
testcase_03 AC 63 ms
72,160 KB
testcase_04 AC 63 ms
70,868 KB
testcase_05 AC 63 ms
71,044 KB
testcase_06 AC 64 ms
70,400 KB
testcase_07 AC 72 ms
72,360 KB
testcase_08 AC 76 ms
72,616 KB
testcase_09 AC 79 ms
71,984 KB
testcase_10 AC 88 ms
79,348 KB
testcase_11 AC 88 ms
80,108 KB
testcase_12 AC 87 ms
79,148 KB
testcase_13 AC 86 ms
79,360 KB
testcase_14 AC 87 ms
79,776 KB
testcase_15 AC 85 ms
78,968 KB
testcase_16 AC 85 ms
78,860 KB
testcase_17 AC 88 ms
78,792 KB
testcase_18 AC 85 ms
79,056 KB
testcase_19 AC 86 ms
78,556 KB
testcase_20 AC 86 ms
79,116 KB
testcase_21 AC 88 ms
79,480 KB
testcase_22 AC 89 ms
79,436 KB
testcase_23 AC 88 ms
79,320 KB
testcase_24 AC 87 ms
79,344 KB
testcase_25 AC 88 ms
79,404 KB
testcase_26 AC 88 ms
79,408 KB
testcase_27 AC 65 ms
72,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def query(x,y):
    print("?",x,y)
    sys.stdout.flush()
    return int(input())

from collections import deque

N = int(input())
deq = deque([i for i in range(1,N+1)])

win = [[] for  i in range(N+1)]

while len(deq)>1:
    ndeq = deque([])
    while deq:
        x = deq.popleft()
        if not deq:
            ndeq.append(x)
            break
        y = deq.popleft()
        z = query(x,y)
        if z==x:
            win[x].append(y)
        else:
            win[y].append(x)
        ndeq.append(z)
    deq = ndeq

one = deq[0]

L = win[one]
res = L[0]
for i in range(1,len(L)):
    res = query(res,L[i])

print("!",res)
0