結果

問題 No.282 おもりと天秤(2)
ユーザー ayame_pyayame_py
提出日時 2015-10-14 05:36:33
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,858 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,436 KB
平均クエリ数 212.21
最終ジャッジ日時 2024-07-16 21:40:54
合計ジャッジ時間 17,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,232 KB
testcase_01 AC 34 ms
25,232 KB
testcase_02 AC 30 ms
24,976 KB
testcase_03 AC 30 ms
25,232 KB
testcase_04 AC 30 ms
24,848 KB
testcase_05 AC 37 ms
25,232 KB
testcase_06 AC 40 ms
24,976 KB
testcase_07 AC 29 ms
24,976 KB
testcase_08 AC 35 ms
25,232 KB
testcase_09 AC 29 ms
24,976 KB
testcase_10 AC 464 ms
25,232 KB
testcase_11 AC 1,524 ms
24,916 KB
testcase_12 AC 511 ms
25,232 KB
testcase_13 AC 819 ms
25,232 KB
testcase_14 AC 1,351 ms
25,232 KB
testcase_15 AC 1,685 ms
24,976 KB
testcase_16 AC 103 ms
24,976 KB
testcase_17 AC 697 ms
25,232 KB
testcase_18 AC 1,142 ms
25,232 KB
testcase_19 AC 1,215 ms
25,232 KB
testcase_20 AC 1,807 ms
25,196 KB
testcase_21 AC 1,786 ms
25,436 KB
testcase_22 AC 1,858 ms
25,196 KB
testcase_23 AC 29 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N=int(raw_input())
ans = [i+1 for i in range(N)]
z = [0 for i in range(1500)]
z=' '.join(map(str,z))
e=0
for i in range(N*2):
	l=i%2
	r=l+int((N-l)/2)*2
	q=' '.join(map(str, ans[l:r]))

	if (r-l)!=0:
		q=q[0:r*4]+' '+z[0:(N-(N-l)/2)*4]
	else:
		q=z[0:(N-(N-l)/2)*4]
	print '? '+q[0:len(q)-1]
	sys.stdout.flush()
	ret = raw_input().split()
	f=True
	for j in range((N-l)/2):
		if ret[j]=='>':
			f=False
			ans[j*2+i%2],ans[j*2+i%2+1]=ans[j*2+i%2+1],ans[j*2+i%2]
	if f:e+=1
	else:e=0
	if e==2:break

ans=' '.join(map(str, ans))
print '! '+ans
sys.stdout.flush()
sys.exit()
0