結果

問題 No.2252 Find Zero
ユーザー KazunKazun
提出日時 2023-03-24 21:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 80,352 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:40:55
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
69,624 KB
testcase_01 AC 144 ms
80,352 KB
testcase_02 AC 93 ms
68,832 KB
testcase_03 AC 119 ms
75,872 KB
testcase_04 AC 97 ms
68,696 KB
testcase_05 AC 93 ms
69,208 KB
testcase_06 AC 93 ms
69,080 KB
testcase_07 AC 94 ms
68,832 KB
testcase_08 AC 109 ms
69,856 KB
testcase_09 AC 119 ms
75,880 KB
testcase_10 AC 94 ms
68,440 KB
testcase_11 AC 95 ms
68,856 KB
testcase_12 AC 92 ms
69,208 KB
testcase_13 AC 93 ms
69,080 KB
testcase_14 AC 91 ms
68,320 KB
testcase_15 AC 94 ms
68,576 KB
testcase_16 AC 92 ms
68,696 KB
testcase_17 AC 92 ms
69,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def question(x,y):
    print("?",x,y,flush=True)
    z=int(input())
    return z

def answer(k):
    print("!",k,flush=True)
    exit()

def solve():
    N=int(input())
    for t in range(N//2):
        x,y=2*t,2*t+1
        z=question(x,y)
        if z==x:
            answer(y)
        elif z==y:
            answer(x)
    else:
        answer(N-1)

#==================================================
solve()
0