結果

問題 No.282 おもりと天秤(2)
ユーザー vwxyzvwxyz
提出日時 2023-12-17 22:13:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 722 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,736 KB
平均クエリ数 220.83
最終ジャッジ日時 2024-09-27 08:09:12
合計ジャッジ時間 8,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
27,480 KB
testcase_01 AC 55 ms
27,608 KB
testcase_02 AC 50 ms
27,480 KB
testcase_03 AC 51 ms
27,096 KB
testcase_04 AC 48 ms
27,352 KB
testcase_05 AC 53 ms
27,608 KB
testcase_06 AC 59 ms
27,224 KB
testcase_07 AC 51 ms
27,224 KB
testcase_08 AC 54 ms
27,224 KB
testcase_09 AC 45 ms
27,224 KB
testcase_10 AC 224 ms
27,648 KB
testcase_11 AC 673 ms
27,352 KB
testcase_12 AC 242 ms
27,480 KB
testcase_13 AC 347 ms
27,224 KB
testcase_14 AC 544 ms
27,224 KB
testcase_15 AC 669 ms
27,736 KB
testcase_16 AC 87 ms
27,736 KB
testcase_17 AC 319 ms
27,608 KB
testcase_18 AC 488 ms
27,352 KB
testcase_19 AC 510 ms
27,224 KB
testcase_20 AC 716 ms
27,464 KB
testcase_21 AC 722 ms
27,080 KB
testcase_22 AC 715 ms
27,208 KB
testcase_23 AC 44 ms
27,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
idx=[i for i in range(1,N+1)]
for i in range(N):
    L,R=[],[]
    for j in range(i%2,N,2):
        if j+1<N:
            L.append(idx[j])
            R.append(idx[j+1])
    LR=[]
    for l,r in zip(L,R):
        LR.append(l)
        LR.append(r)
    LR=LR+[0]*(2*N-len(LR))
    print("?",*LR)
    C=input().split()
    for j,c in zip(range(i%2,N,2),C):
        if j+1<N:
            if c==">":
                idx[j],idx[j+1]=idx[j+1],idx[j]
print("!",*idx)
0