結果

問題 No.282 おもりと天秤(2)
ユーザー simansiman
提出日時 2022-01-13 04:34:12
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 329 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,168 KB
平均クエリ数 1056.46
最終ジャッジ日時 2024-11-15 23:35:39
合計ジャッジ時間 34,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
28,632 KB
testcase_01 AC 152 ms
28,888 KB
testcase_02 AC 129 ms
28,888 KB
testcase_03 AC 123 ms
28,888 KB
testcase_04 AC 119 ms
28,760 KB
testcase_05 AC 138 ms
29,168 KB
testcase_06 AC 156 ms
29,400 KB
testcase_07 AC 119 ms
29,016 KB
testcase_08 AC 157 ms
29,400 KB
testcase_09 AC 113 ms
28,376 KB
testcase_10 AC 1,408 ms
29,400 KB
testcase_11 RE -
testcase_12 AC 1,569 ms
29,784 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 396 ms
30,168 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 108 ms
28,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
omori = [*1..N]

def send_query(i, j)
  query = Array.new(2 * N, 0)
  query[0] = i
  query[1] = j
  STDOUT.puts("? #{query.join(' ')}")
  STDOUT.flush

  STDERR.puts("? #{query.join(' ')}")
  res = gets.chomp.split

  res[0] == '<' ? -1 : 1
end

omori.sort! { |i, j| send_query(i, j) }

puts "! #{omori.join(' ')}"
0