結果

問題 No.934 Explosive energy drink
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 12:04:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,272 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 19:05:47
合計ジャッジ時間 9,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
28,640 KB
testcase_01 AC 765 ms
29,136 KB
testcase_02 AC 116 ms
28,376 KB
testcase_03 AC 402 ms
29,016 KB
testcase_04 AC 772 ms
28,760 KB
testcase_05 AC 124 ms
28,376 KB
testcase_06 AC 118 ms
28,888 KB
testcase_07 AC 119 ms
28,888 KB
testcase_08 AC 112 ms
29,144 KB
testcase_09 AC 115 ms
29,144 KB
testcase_10 AC 112 ms
29,144 KB
testcase_11 AC 118 ms
28,632 KB
testcase_12 AC 116 ms
29,016 KB
testcase_13 AC 124 ms
29,016 KB
testcase_14 AC 135 ms
28,888 KB
testcase_15 AC 288 ms
28,632 KB
testcase_16 AC 143 ms
29,272 KB
testcase_17 AC 191 ms
29,272 KB
testcase_18 AC 199 ms
29,272 KB
testcase_19 AC 343 ms
28,760 KB
testcase_20 AC 521 ms
28,760 KB
testcase_21 AC 542 ms
29,144 KB
testcase_22 AC 742 ms
28,504 KB
testcase_23 AC 767 ms
29,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = (1 .. N).to_a
S = (1 .. N).select do |n|
  puts "? #{N - 1}"
  A[n - 1] = nil
  puts A.join(' ')
  A[n - 1] = n
  $stdout.flush
  gets.to_i == 0
end
puts "! #{S.size}"
puts S.join(' ')
$stdout.flush


0