結果

問題 No.2252 Find Zero
ユーザー 👑 obakyan
提出日時 2023-04-29 14:53:53
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 25,232 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-11-18 10:59:51
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n", "*l")
for i = 0, n - 2, 2 do
  io.write("? " .. i .. " " .. i + 1 .. "\n")
  io.flush()
  local ans = io.read("*n", "*l")
  if ans == i then
    io.write("! " .. i + 1 .. "\n")
    io.flush()
    os.exit()
  elseif ans == i + 1 then
    io.write("! " .. i .. "\n")
    io.flush()
    os.exit()
  end
end
io.write("! " .. n - 1 .. "\n")
io.flush()
0