結果

問題 No.331 CodeRunnerでやれ
ユーザー simansiman
提出日時 2022-07-27 00:55:06
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 496 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 80,180 KB
平均クエリ数 71.94
最終ジャッジ日時 2024-07-17 03:09:59
合計ジャッジ時間 10,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
28,640 KB
testcase_01 AC 272 ms
28,896 KB
testcase_02 AC 285 ms
28,896 KB
testcase_03 AC 286 ms
28,888 KB
testcase_04 AC 294 ms
28,504 KB
testcase_05 AC 297 ms
28,632 KB
testcase_06 AC 297 ms
29,032 KB
testcase_07 AC 403 ms
28,632 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def send_query(str)
  STDOUT.puts(str)
  STDOUT.flush

  res = gets.chomp

  if res == "Merry Christmas!"
    -1
  else
    res.to_i
  end
end

v = gets.to_i
v.times do
  res = send_query("F")
  exit if res == -1
end

send_query("R")

loop do
  res = send_query("L")

  if res > 0
    f = send_query("F")

    if f < 0
      exit
    end
  else
    f = send_query("R")

    if f > 0
      r = send_query("F")
      if r < 0
        exit
      end
    else
      send_query("R")
    end
  end
end
0