結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
27,224 KB
testcase_01 AC 61 ms
27,352 KB
testcase_02 AC 51 ms
27,352 KB
testcase_03 AC 52 ms
27,096 KB
testcase_04 AC 49 ms
27,352 KB
testcase_05 AC 58 ms
27,224 KB
testcase_06 AC 65 ms
27,376 KB
testcase_07 AC 49 ms
27,480 KB
testcase_08 AC 66 ms
27,480 KB
testcase_09 AC 47 ms
26,960 KB
testcase_10 AC 402 ms
27,608 KB
testcase_11 AC 1,291 ms
27,256 KB
testcase_12 AC 434 ms
27,352 KB
testcase_13 AC 633 ms
27,472 KB
testcase_14 AC 1,052 ms
27,664 KB
testcase_15 AC 1,333 ms
27,480 KB
testcase_16 AC 130 ms
27,608 KB
testcase_17 AC 601 ms
27,608 KB
testcase_18 AC 922 ms
27,480 KB
testcase_19 AC 960 ms
27,352 KB
testcase_20 AC 1,364 ms
27,720 KB
testcase_21 AC 1,420 ms
27,464 KB
testcase_22 AC 1,344 ms
27,336 KB
testcase_23 AC 46 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
idx=[i for i in range(1,N+1)]
for i in range(2*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