結果

問題 No.2496 LCM between Permutations
ユーザー pitPpitP
提出日時 2023-10-07 10:31:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,010 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 93,756 KB
平均クエリ数 951.03
最終ジャッジ日時 2024-07-26 17:45:04
合計ジャッジ時間 6,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,448 KB
testcase_01 AC 62 ms
69,720 KB
testcase_02 AC 62 ms
68,568 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 63 ms
68,952 KB
testcase_06 AC 64 ms
69,336 KB
testcase_07 AC 64 ms
69,128 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 62 ms
70,676 KB
testcase_14 WA -
testcase_15 AC 82 ms
76,968 KB
testcase_16 AC 82 ms
77,496 KB
testcase_17 AC 86 ms
79,880 KB
testcase_18 AC 197 ms
92,968 KB
testcase_19 AC 176 ms
90,704 KB
testcase_20 AC 218 ms
93,016 KB
testcase_21 AC 186 ms
93,576 KB
testcase_22 AC 183 ms
93,248 KB
testcase_23 AC 220 ms
93,756 KB
testcase_24 AC 200 ms
93,172 KB
testcase_25 AC 224 ms
93,220 KB
testcase_26 AC 246 ms
92,768 KB
testcase_27 AC 246 ms
93,024 KB
testcase_28 AC 244 ms
93,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    print('!', 1, 1)
    exit()

import math
def is_prime(n):
    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if n % i == 0:
            return False
    return True

P = -1
for i in range(N, -1, -1):
    if is_prime(i) :
        P = i
        break

def query(i, j):
    print("?", i, j)
    z = int(input())
    return z

A = [-1] * (N + 1)
B = [-1] * (N + 1)
p_idx = []
for i in range(1, N + 1):
    z = query(i, i)
    if z % P == 0:
        p_idx.append(i)

x = y = -1
# A[x] = B[y] = P
if p_idx == 1:     
    x = y = p_idx[0]
else:
    z = query(p_idx[0], p_idx[1])
    if z % P == 0: 
        x = p_idx[0] 
        y = p_idx[1]
    else:
        y = p_idx[0]
        x = p_idx[1]

A[x] = B[y] = P

# A[i], B[y]
for i in range(1, N + 1):
    if i == x :
        continue
    z = query(i, y)
    A[i] = z // P

# A[x], B[i]
for i in range(1, N + 1):
    if i == y :
        continue
    z = query(x, i)
    B[i] = z // P

print("!", *A[1:], *B[1:])
0