結果

問題 No.2252 Find Zero
コンテスト
ユーザー obakyan
提出日時 2023-04-29 14:53:53
言語 Lua
(LuaJit 2.1.1774638290)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 371 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 284 ms
コンパイル使用メモリ 6,528 KB
実行使用メモリ 30,284 KB
平均クエリ数 78.17
最終ジャッジ日時 2026-05-12 22:59:58
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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