結果
問題 | No.2252 Find Zero |
ユーザー | meruuu61779999 |
提出日時 | 2023-03-25 16:56:36 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 223 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 88,672 KB |
平均クエリ数 | 118.11 |
最終ジャッジ日時 | 2024-09-18 23:11:44 |
合計ジャッジ時間 | 3,594 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 82 ms
68,320 KB |
testcase_03 | RE | - |
testcase_04 | AC | 86 ms
68,824 KB |
testcase_05 | RE | - |
testcase_06 | AC | 82 ms
68,952 KB |
testcase_07 | AC | 84 ms
68,824 KB |
testcase_08 | AC | 115 ms
76,520 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 91 ms
68,568 KB |
testcase_15 | RE | - |
testcase_16 | AC | 80 ms
68,312 KB |
testcase_17 | RE | - |
ソースコード
N=int(input()) for i in range(N): print("?", i, i) val= int(input()) if val==i: j=(i+1)%N print("?", i,j) val2=int(input()) if val2==j: print("!",i) exit()