結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,848 KB
testcase_01 AC 48 ms
25,232 KB
testcase_02 AC 34 ms
24,976 KB
testcase_03 AC 32 ms
24,976 KB
testcase_04 AC 30 ms
24,976 KB
testcase_05 AC 41 ms
24,848 KB
testcase_06 AC 54 ms
24,976 KB
testcase_07 AC 31 ms
24,976 KB
testcase_08 AC 50 ms
24,976 KB
testcase_09 AC 29 ms
24,848 KB
testcase_10 AC 948 ms
25,232 KB
testcase_11 AC 3,300 ms
25,232 KB
testcase_12 AC 1,071 ms
24,832 KB
testcase_13 AC 1,638 ms
24,848 KB
testcase_14 AC 2,705 ms
25,232 KB
testcase_15 AC 3,469 ms
25,232 KB
testcase_16 AC 225 ms
24,976 KB
testcase_17 AC 1,492 ms
24,848 KB
testcase_18 AC 2,451 ms
25,232 KB
testcase_19 AC 2,549 ms
25,232 KB
testcase_20 AC 3,600 ms
25,196 KB
testcase_21 AC 3,680 ms
25,264 KB
testcase_22 AC 3,743 ms
25,196 KB
testcase_23 AC 28 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N=int(raw_input())
a = [i+1 for i in range(N)]
z = [0 for i in range(1500)]
z=' '.join(map(str,z))
for i in range(N*2):
	l=i%2
	r=l+int((N-l)/2)*2
	q=' '.join(map(str, a[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()
	c=raw_input().split()
	for j in range((N-l)/2):
		if c[j]=='>':a[j*2+i%2],a[j*2+i%2+1]=a[j*2+i%2+1],a[j*2+i%2]
a=' '.join(map(str, a))
print '!',a
sys.stdout.flush()
sys.exit()
0