結果

問題 No.2085 Directed Complete Graph
ユーザー だれだれ
提出日時 2022-09-23 21:36:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,608 KB
平均クエリ数 2472.00
最終ジャッジ日時 2024-06-02 00:21:06
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
27,224 KB
testcase_01 AC 42 ms
27,224 KB
testcase_02 AC 198 ms
27,208 KB
testcase_03 AC 192 ms
27,080 KB
testcase_04 AC 212 ms
27,208 KB
testcase_05 AC 114 ms
27,336 KB
testcase_06 AC 122 ms
27,464 KB
testcase_07 AC 192 ms
27,336 KB
testcase_08 AC 148 ms
27,464 KB
testcase_09 AC 194 ms
26,952 KB
testcase_10 AC 197 ms
27,464 KB
testcase_11 AC 193 ms
27,336 KB
testcase_12 AC 201 ms
27,592 KB
testcase_13 AC 199 ms
27,208 KB
testcase_14 AC 199 ms
27,464 KB
testcase_15 AC 44 ms
27,608 KB
testcase_16 AC 45 ms
26,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [0] * n
for i in range(n):
    a[i] = i + 1

def merge_sort(v):
    if len(v) == 1:
        return v
    c = merge_sort(v[:len(v) // 2])
    d = merge_sort(v[len(v) // 2:])
    i, j = 0, 0
    res = []
    while i < len(c) and j < len(d):
        print("?", c[i], d[j])
        t = int(input())
        if t == 1:
            res.append(c[i])
            i += 1
        else:
            res.append(d[j])
            j += 1
    while i < len(c):
        res.append(c[i])
        i += 1
    while j < len(d):
        res.append(d[j])
        j += 1
    return res

a = merge_sort(a)
print("!")
print(n - 1)
print(*a)
0