結果

問題 No.282 おもりと天秤(2)
ユーザー kimiyukikimiyuki
提出日時 2016-06-14 18:31:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 880 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,720 KB
平均クエリ数 211.21
最終ジャッジ日時 2024-07-16 23:57:25
合計ジャッジ時間 9,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
27,096 KB
testcase_01 AC 59 ms
27,480 KB
testcase_02 AC 55 ms
27,352 KB
testcase_03 AC 56 ms
27,224 KB
testcase_04 AC 54 ms
27,224 KB
testcase_05 AC 58 ms
26,968 KB
testcase_06 AC 61 ms
27,224 KB
testcase_07 AC 54 ms
27,352 KB
testcase_08 AC 62 ms
27,352 KB
testcase_09 AC 52 ms
27,224 KB
testcase_10 AC 238 ms
27,352 KB
testcase_11 AC 704 ms
27,224 KB
testcase_12 AC 257 ms
27,128 KB
testcase_13 AC 379 ms
27,352 KB
testcase_14 AC 629 ms
27,224 KB
testcase_15 AC 734 ms
27,480 KB
testcase_16 AC 96 ms
27,608 KB
testcase_17 AC 345 ms
27,480 KB
testcase_18 AC 548 ms
27,224 KB
testcase_19 AC 566 ms
27,480 KB
testcase_20 AC 792 ms
27,720 KB
testcase_21 AC 793 ms
27,720 KB
testcase_22 AC 880 ms
27,720 KB
testcase_23 AC 52 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
QUERY_LIMIT = 2000
n = int(input())
a = list(range(1,n+1))
for i in range(QUERY_LIMIT):
    q = []
    j = i % 2
    while j+1 < n:
        q += [a[j], a[j+1]]
        j += 2
    while len(q)//2 < n:
        q += [0, 0]
    print('?', *q)
    sys.stdout.flush()
    q = input().split()
    j = i % 2
    modified = False
    while j+1 < n:
        if q[j//2] == '>':
            a[j], a[j+1] = a[j+1], a[j]
            modified = True
        j += 2
    if not modified:
        break
print('!', *a)
0