結果

問題 No.331 CodeRunnerでやれ
ユーザー simansiman
提出日時 2022-07-27 00:59:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 721 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,144 KB
平均クエリ数 721.65
最終ジャッジ日時 2024-07-17 03:09:48
合計ジャッジ時間 8,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
28,896 KB
testcase_01 AC 272 ms
28,384 KB
testcase_02 AC 285 ms
28,768 KB
testcase_03 AC 289 ms
28,888 KB
testcase_04 AC 291 ms
29,016 KB
testcase_05 AC 305 ms
28,888 KB
testcase_06 AC 302 ms
28,648 KB
testcase_07 AC 394 ms
29,016 KB
testcase_08 AC 613 ms
29,144 KB
testcase_09 AC 387 ms
28,888 KB
testcase_10 AC 428 ms
28,760 KB
testcase_11 AC 721 ms
29,024 KB
testcase_12 AC 430 ms
29,016 KB
testcase_13 AC 397 ms
28,920 KB
testcase_14 AC 394 ms
28,768 KB
testcase_15 AC 408 ms
29,016 KB
testcase_16 AC 378 ms
28,760 KB
権限があれば一括ダウンロードができます

ソースコード

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")
step_cnt = 0

loop do
  res = send_query("L")

  if res > 0 && step_cnt > 1000
    res.times do
      f = send_query("F")
      exit if f == -1
    end

    send_query("R")
    step_cnt = 0
    next
  end

  if res > 0
    f = send_query("F")
    step_cnt += 1

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

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