結果

問題 No.331 CodeRunnerでやれ
ユーザー 👑 obakyanobakyan
提出日時 2020-05-05 15:27:44
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 89,048 KB
平均クエリ数 222.53
最終ジャッジ日時 2024-07-17 03:35:32
合計ジャッジ時間 10,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
24,848 KB
testcase_01 AC 164 ms
24,848 KB
testcase_02 AC 195 ms
24,592 KB
testcase_03 AC 212 ms
24,580 KB
testcase_04 AC 195 ms
24,580 KB
testcase_05 AC 231 ms
25,220 KB
testcase_06 AC 209 ms
24,592 KB
testcase_07 AC 325 ms
24,836 KB
testcase_08 AC 196 ms
24,964 KB
testcase_09 AC 313 ms
24,836 KB
testcase_10 AC 356 ms
25,220 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

local isend = "Merry Christmas!"
local function query(str)
  io.write(str .. "\n")
  io.flush()
  local ret = io.read("*l")
  if ret == isend then os.exit() end
  return ret
end
local s = io.read()
while s == "0" do
  s = query("L")
end
while s ~= "0" do
  s = query("F")
end
s = query("R")
while true do
  s = query("L")
  if s == "0" then
    s = query("R")
    s = query("R")
  else
    s = query("F")
  end
end
0