結果

問題 No.282 おもりと天秤(2)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-20 01:41:43
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,866 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 25,616 KB
平均クエリ数 1001.00
最終ジャッジ日時 2024-07-17 00:33:20
合計ジャッジ時間 42,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
24,848 KB
testcase_01 AC 362 ms
25,076 KB
testcase_02 AC 260 ms
24,464 KB
testcase_03 AC 204 ms
24,848 KB
testcase_04 AC 168 ms
25,232 KB
testcase_05 AC 318 ms
24,976 KB
testcase_06 AC 406 ms
24,848 KB
testcase_07 AC 173 ms
25,220 KB
testcase_08 AC 393 ms
25,232 KB
testcase_09 AC 74 ms
25,488 KB
testcase_10 AC 1,881 ms
24,964 KB
testcase_11 AC 3,619 ms
25,232 KB
testcase_12 AC 1,925 ms
24,848 KB
testcase_13 AC 2,573 ms
24,848 KB
testcase_14 AC 3,366 ms
24,848 KB
testcase_15 AC 3,575 ms
24,848 KB
testcase_16 AC 908 ms
25,616 KB
testcase_17 AC 2,370 ms
24,976 KB
testcase_18 AC 3,073 ms
24,848 KB
testcase_19 AC 3,190 ms
25,568 KB
testcase_20 AC 3,783 ms
24,812 KB
testcase_21 AC 3,805 ms
25,196 KB
testcase_22 AC 3,866 ms
24,812 KB
testcase_23 AC 61 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def ask(L):
    print '? ' + ' '.join(map(str, L))
    sys.stdout.flush()
    return raw_input().split()

N = int(raw_input())
A = range(1, N+1) + [0]*N

for i in xrange(1000):
    if i % 2 == 0:
        ans = ask(A)
        for j in xrange(N/2):
            if ans[j] == '>':
                A[j*2], A[j*2+1] = A[j*2+1], A[j*2]
    else:
        ans = ask(A[1:]+[0])
        for j in xrange(N/2-1+N%2):
            if ans[j] == '>':
                A[j*2+1], A[j*2+2] = A[j*2+2], A[j*2+1]
print '! ' + ' '.join(map(str, A[:N]))
0