結果

問題 No.282 おもりと天秤(2)
ユーザー cielciel
提出日時 2018-01-01 15:28:17
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,896 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 16,811 ms
コンパイル使用メモリ 295,140 KB
実行使用メモリ 25,476 KB
平均クエリ数 211.21
最終ジャッジ日時 2024-07-17 01:34:32
合計ジャッジ時間 35,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
25,448 KB
testcase_01 AC 32 ms
24,836 KB
testcase_02 AC 29 ms
24,836 KB
testcase_03 AC 29 ms
24,836 KB
testcase_04 AC 28 ms
25,220 KB
testcase_05 AC 31 ms
25,220 KB
testcase_06 AC 34 ms
24,836 KB
testcase_07 AC 29 ms
25,220 KB
testcase_08 AC 34 ms
25,220 KB
testcase_09 AC 28 ms
24,580 KB
testcase_10 AC 466 ms
25,220 KB
testcase_11 AC 1,637 ms
24,836 KB
testcase_12 AC 494 ms
25,220 KB
testcase_13 AC 793 ms
24,580 KB
testcase_14 AC 1,397 ms
24,836 KB
testcase_15 AC 1,673 ms
25,220 KB
testcase_16 AC 112 ms
25,476 KB
testcase_17 AC 703 ms
25,220 KB
testcase_18 AC 1,199 ms
24,964 KB
testcase_19 AC 1,271 ms
24,580 KB
testcase_20 AC 1,825 ms
25,196 KB
testcase_21 AC 1,881 ms
24,812 KB
testcase_22 AC 1,896 ms
24,812 KB
testcase_23 AC 28 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def perform(start,q)
	puts "? "+q.join(" ")
	STDOUT.flush
	f=true
	gets.not_nil!.split.each_with_index(0){|e,i|
		if e==">"
			f=false
			A.swap(i*2+0+start,i*2+1+start)
		end
	}
	f	
end
def g(s,e,pad) A[s...e].each_slice(2).flat_map{|e|e}.to_a+[0]*pad end

N=gets.not_nil!.to_i
A=(1..N).to_a
loop{break if perform(0,N%2==0?g(0,N,N) : g(0,N-1,N+1)) || perform(1,N%2==0?g(1,N-1,N+2) : g(1,N,N+1))}
puts "! "+A.join(" ")
0