結果
問題 | No.2252 Find Zero |
ユーザー | vwxyz |
提出日時 | 2023-12-21 03:36:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,776 KB |
平均クエリ数 | 149.94 |
最終ジャッジ日時 | 2024-09-27 10:44:15 |
合計ジャッジ時間 | 3,024 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 112 ms
27,464 KB |
testcase_02 | AC | 86 ms
27,208 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 82 ms
26,848 KB |
testcase_11 | AC | 83 ms
27,360 KB |
testcase_12 | AC | 84 ms
27,104 KB |
testcase_13 | WA | - |
testcase_14 | AC | 83 ms
27,352 KB |
testcase_15 | WA | - |
testcase_16 | AC | 84 ms
27,232 KB |
testcase_17 | WA | - |
ソースコード
N=int(input()) for i in range(N//2): print("?",i*2,i*2+1) z=int(input()) if z in (i,i+1): print("!",z^(i*2)^(i*2+1)) break else: print("!",N-1)