結果
問題 | No.2496 LCM between Permutations |
ユーザー | naut3 |
提出日時 | 2023-10-06 23:04:22 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,538 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 83,528 KB |
平均クエリ数 | 0.31 |
最終ジャッジ日時 | 2024-07-26 16:54:50 |
合計ジャッジ時間 | 3,933 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
71,752 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
from math import lcm, gcd import random def main(): N = int(input()) A = [-1 for _ in range(N)] B = [-1 for _ in range(N)] b_lcm_azero = [] r = random.randint(0, N - 1) for i in range(N): print("? {} {}".format(r + 1, i + 1), flush=True) x = int(input()) b_lcm_azero.append(x) a_r = min(b_lcm_azero) A[r] = a_r b_one_cand = [] for i in range(N): if b_lcm_azero[i] == a_r: b_one_cand.append(i) while True: r = random.randint(0, N - 1) if A[r] != -1: continue values = [] for c in b_one_cand: print("? {} {}".format(r + 1, c + 1), flush=True) x = int(input()) values.append(x) b_one_cand_nxt = [] m = min(values) A[r] = 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()