結果

問題 No.2828 Remainder Game
ユーザー maguroflymagurofly
提出日時 2024-08-02 21:31:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,032 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 21:31:50
合計ジャッジ時間 4,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
28,640 KB
testcase_01 AC 142 ms
28,896 KB
testcase_02 AC 149 ms
28,768 KB
testcase_03 AC 142 ms
28,896 KB
testcase_04 AC 172 ms
28,896 KB
testcase_05 AC 142 ms
28,392 KB
testcase_06 AC 146 ms
28,776 KB
testcase_07 AC 150 ms
28,776 KB
testcase_08 AC 149 ms
28,392 KB
testcase_09 AC 148 ms
28,904 KB
testcase_10 AC 143 ms
28,776 KB
testcase_11 AC 165 ms
29,032 KB
testcase_12 AC 142 ms
28,648 KB
testcase_13 AC 145 ms
28,520 KB
testcase_14 AC 145 ms
28,776 KB
testcase_15 AC 148 ms
28,640 KB
testcase_16 AC 147 ms
28,896 KB
testcase_17 AC 146 ms
28,896 KB
testcase_18 AC 143 ms
28,640 KB
testcase_19 AC 146 ms
28,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

STDOUT.sync = true

N = gets.to_i

ans = 0
(1..10).each do |bit|
	m = 2**bit
	r = (0...2**bit).filter { |x| x[bit - 1] == 1 }
	puts "#{m} #{r.size}"
	puts r.join(" ")
	x = gets.to_i
	ans += x << (bit - 1)
end

puts "0 1"
puts ans
0