結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
28,768 KB
testcase_01 AC 787 ms
28,512 KB
testcase_02 AC 100 ms
28,888 KB
testcase_03 AC 414 ms
28,760 KB
testcase_04 AC 792 ms
29,264 KB
testcase_05 AC 100 ms
28,504 KB
testcase_06 AC 99 ms
28,376 KB
testcase_07 AC 100 ms
28,888 KB
testcase_08 AC 108 ms
28,760 KB
testcase_09 AC 102 ms
28,888 KB
testcase_10 AC 100 ms
28,504 KB
testcase_11 AC 102 ms
28,376 KB
testcase_12 AC 104 ms
29,144 KB
testcase_13 AC 109 ms
29,016 KB
testcase_14 AC 110 ms
29,016 KB
testcase_15 AC 278 ms
29,144 KB
testcase_16 AC 137 ms
28,760 KB
testcase_17 AC 183 ms
28,632 KB
testcase_18 AC 184 ms
29,016 KB
testcase_19 AC 327 ms
28,760 KB
testcase_20 AC 524 ms
29,272 KB
testcase_21 AC 559 ms
28,760 KB
testcase_22 AC 776 ms
29,016 KB
testcase_23 AC 792 ms
29,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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


0