結果

問題 No.282 おもりと天秤(2)
ユーザー roiti46roiti46
提出日時 2015-09-19 01:59:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,759 ms / 5,000 ms
コード長 712 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,472 KB
平均クエリ数 220.33
最終ジャッジ日時 2024-07-16 21:28:15
合計ジャッジ時間 16,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,848 KB
testcase_01 AC 36 ms
24,848 KB
testcase_02 AC 33 ms
24,976 KB
testcase_03 AC 31 ms
24,848 KB
testcase_04 AC 31 ms
24,928 KB
testcase_05 AC 35 ms
24,848 KB
testcase_06 AC 37 ms
25,232 KB
testcase_07 AC 31 ms
25,232 KB
testcase_08 AC 39 ms
24,592 KB
testcase_09 AC 28 ms
25,232 KB
testcase_10 AC 401 ms
24,848 KB
testcase_11 AC 1,567 ms
25,232 KB
testcase_12 AC 378 ms
25,220 KB
testcase_13 AC 635 ms
25,232 KB
testcase_14 AC 1,313 ms
24,592 KB
testcase_15 AC 1,592 ms
25,232 KB
testcase_16 AC 69 ms
25,232 KB
testcase_17 AC 697 ms
25,472 KB
testcase_18 AC 474 ms
25,124 KB
testcase_19 AC 1,113 ms
25,232 KB
testcase_20 AC 1,623 ms
25,196 KB
testcase_21 AC 1,750 ms
24,556 KB
testcase_22 AC 1,759 ms
24,556 KB
testcase_23 AC 30 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def puts(s):
    print s
    sys.stdout.flush()

N = int(raw_input())

win = [0] * N
even = 1 - N % 2
M = N - even
circle = [[i + 1, M - i - 1] for i in xrange((N - 1) / 2)]
for i in xrange(M):
    pair = [[(p + i) % M + 1, (q + i) % M + 1] for p, q in circle]
    if even:
        pair += [[i + 1, N]]
    pair += [[0, 0] for i in xrange(N - len(pair))]
    query = "? " + " ".join(" ".join(map(str, p)) for p in pair)

    puts(query)

    reply = raw_input().split()
    for i, s in enumerate(reply):
        p, q = pair[i]
        if s == ">": win[p - 1] += 1
        if s == "<": win[q - 1] += 1

ans = [0] * N
for i, r in enumerate(win, 1):
    ans[r] = i

puts("! " + " ".join(map(str, ans)))
0