結果

問題 No.282 おもりと天秤(2)
ユーザー simansiman
提出日時 2022-01-13 04:29:51
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 291 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,400 KB
平均クエリ数 389.46
最終ジャッジ日時 2024-11-15 23:30:27
合計ジャッジ時間 66,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
28,888 KB
testcase_01 AC 138 ms
29,008 KB
testcase_02 AC 122 ms
28,888 KB
testcase_03 AC 118 ms
28,888 KB
testcase_04 AC 114 ms
28,504 KB
testcase_05 AC 129 ms
29,144 KB
testcase_06 AC 152 ms
29,400 KB
testcase_07 AC 112 ms
28,888 KB
testcase_08 AC 147 ms
29,272 KB
testcase_09 AC 107 ms
28,624 KB
testcase_10 AC 2,818 ms
30,296 KB
testcase_11 TLE -
testcase_12 AC 3,259 ms
30,168 KB
testcase_13 RE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 637 ms
29,912 KB
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 109 ms
28,768 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

  res = gets.chomp.split

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

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

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