結果

問題 No.2496 LCM between Permutations
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-09-12 16:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,096 KB
平均クエリ数 952.76
最終ジャッジ日時 2024-06-30 04:01:29
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
69,636 KB
testcase_01 AC 55 ms
69,988 KB
testcase_02 AC 51 ms
69,428 KB
testcase_03 AC 52 ms
69,872 KB
testcase_04 AC 55 ms
68,736 KB
testcase_05 AC 53 ms
69,352 KB
testcase_06 AC 58 ms
69,488 KB
testcase_07 AC 57 ms
69,592 KB
testcase_08 AC 54 ms
70,032 KB
testcase_09 AC 51 ms
69,704 KB
testcase_10 AC 54 ms
69,572 KB
testcase_11 AC 50 ms
69,776 KB
testcase_12 AC 50 ms
70,080 KB
testcase_13 AC 52 ms
69,808 KB
testcase_14 AC 53 ms
70,880 KB
testcase_15 AC 62 ms
71,924 KB
testcase_16 AC 66 ms
76,592 KB
testcase_17 AC 78 ms
77,436 KB
testcase_18 AC 189 ms
92,752 KB
testcase_19 AC 161 ms
90,736 KB
testcase_20 AC 218 ms
93,088 KB
testcase_21 AC 194 ms
92,720 KB
testcase_22 AC 163 ms
92,760 KB
testcase_23 AC 200 ms
92,800 KB
testcase_24 AC 176 ms
92,940 KB
testcase_25 AC 207 ms
93,076 KB
testcase_26 AC 214 ms
92,796 KB
testcase_27 AC 211 ms
92,768 KB
testcase_28 AC 209 ms
93,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def guess(i, j):
    print("?", i + 1, j + 1, flush=True)
    return int(input())


n = int(input())

if n == 1:
    print("!", 1, 1, flush=True)
    exit()

p = n
while True:
    ok = True
    d = 2
    while d * d <= p:
        if p % d == 0:
            ok = False
            break
        d += (d & 1) + 1
    if ok:
        break
    p -= 1

x, y = -1, -1
for i in range(n):
    if guess(i, i) % p == 0:
        if x == -1:
            x = i
        else:
            y = i

if y > -1 and guess(x, y) % p != 0:
    x, y = y, x
if y == -1:
    y = x

a = []
for i in range(n):
    if i == x:
        a.append(p)
    else:
        a.append(guess(i, y) // p)

b = []
for j in range(n):
    if j == y:
        b.append(p)
    else:
        b.append(guess(x, j) // p)

print("!", " ".join(map(str, a)), " ".join(map(str, b)), flush=True)
0