結果

問題 No.2496 LCM between Permutations
ユーザー naut3naut3
提出日時 2023-10-06 22:55:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,409 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 94,620 KB
平均クエリ数 953.24
最終ジャッジ日時 2024-07-26 16:50:13
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,308 KB
testcase_01 AC 60 ms
68,868 KB
testcase_02 AC 61 ms
70,148 KB
testcase_03 AC 64 ms
69,936 KB
testcase_04 AC 62 ms
71,004 KB
testcase_05 AC 63 ms
69,972 KB
testcase_06 AC 63 ms
69,660 KB
testcase_07 AC 63 ms
69,412 KB
testcase_08 RE -
testcase_09 AC 63 ms
70,728 KB
testcase_10 RE -
testcase_11 AC 62 ms
70,216 KB
testcase_12 RE -
testcase_13 AC 61 ms
69,388 KB
testcase_14 AC 62 ms
69,932 KB
testcase_15 AC 73 ms
71,964 KB
testcase_16 RE -
testcase_17 AC 79 ms
72,556 KB
testcase_18 AC 199 ms
92,972 KB
testcase_19 RE -
testcase_20 AC 202 ms
93,192 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 197 ms
92,940 KB
testcase_25 AC 227 ms
93,128 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm, gcd


def main():
    N = int(input())

    A = [-1 for _ in range(N)]
    B = [-1 for _ in range(N)]

    b_lcm_azero = []

    for i in range(N):
        print("? 1 {}".format(i + 1), flush=True)
        x = int(input())
        b_lcm_azero.append(x)

    a_0 = min(b_lcm_azero)
    A[0] = a_0

    b_one_cand = []

    for i in range(N):
        if b_lcm_azero[i] == a_0:
            b_one_cand.append(i)

    for i in range(1, N):
        values = []
        for c in b_one_cand:
            print("? {} {}".format(i + 1, c + 1), flush=True)
            x = int(input())
            values.append(x)

        b_one_cand_nxt = []

        m = min(values)
        A[i] = m

        for j in range(len(b_one_cand)):
            if values[j] == m:
                b_one_cand_nxt.append(b_one_cand[j])

        b_one_cand = b_one_cand_nxt

        if len(b_one_cand) == 1:
            break

    j = b_one_cand[0]

    B[j] = 1

    for i in range(N):
        if A[i] != -1:
            continue

        print("? {} {}".format(i + 1, j + 1), flush=True)
        x = int(input())

        A[i] = x

    j = -1

    for i in range(N):
        if A[i] == 1:
            j = i

    for i in range(N):
        if B[i] != -1:
            continue

        print("? {} {}".format(j + 1, i + 1), flush=True)
        x = int(input())
        B[i] = x

    print("!", *A, *B, flush=True)


main()
0