結果

問題 No.2085 Directed Complete Graph
ユーザー 👑 rin204rin204
提出日時 2023-01-23 17:04:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,792 KB
平均クエリ数 2472.00
最終ジャッジ日時 2024-06-25 12:41:05
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,812 KB
testcase_01 AC 61 ms
68,688 KB
testcase_02 AC 284 ms
93,768 KB
testcase_03 AC 280 ms
93,384 KB
testcase_04 AC 297 ms
93,512 KB
testcase_05 AC 198 ms
93,792 KB
testcase_06 AC 204 ms
93,664 KB
testcase_07 AC 285 ms
93,792 KB
testcase_08 AC 241 ms
93,664 KB
testcase_09 AC 274 ms
93,664 KB
testcase_10 AC 287 ms
93,512 KB
testcase_11 AC 294 ms
93,256 KB
testcase_12 AC 286 ms
93,640 KB
testcase_13 AC 296 ms
93,384 KB
testcase_14 AC 290 ms
93,640 KB
testcase_15 AC 59 ms
68,704 KB
testcase_16 AC 59 ms
68,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(range(1, n + 1))

def dc(A):
    if len(A) <= 1:
        return A

    n = len(A)
    L = dc(A[:n // 2])
    R = dc(A[n // 2:])
    lp = 0
    rp = 0
    ret = []
    while lp < len(L) and rp < len(R):
        print("?", L[lp], R[rp], flush=True)
        t = int(input())
        if t:
            ret.append(L[lp])
            lp += 1
        else:
            ret.append(R[rp])
            rp += 1
    ret += L[lp:] + R[rp:]
    return ret

A = dc(A)
print("!")
print(n - 1)
print(*A)
0