結果
問題 |
No.1779 Magical Swap
|
ユーザー |
![]() |
提出日時 | 2021-12-12 22:27:31 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 751 bytes |
コンパイル時間 | 317 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 131,240 KB |
最終ジャッジ日時 | 2024-07-21 10:51:07 |
合計ジャッジ時間 | 4,411 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 14 WA * 2 RE * 2 |
ソースコード
N = 100001 fp = [0] * N for i in range(2, len(fp)): if fp[i] == 0: fp[i] = i for j in range(i * i, len(fp), i): if fp[j] == 0: fp[j] = i ncases = int(input()) for caseno in range(ncases): n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) c1, c2 = {}, {} for i in range(1, len(a)): if a[i] == b[i]: continue if a[i] not in c1: c1[a[i]] = [] if b[i] not in c2: c2[b[i]] = [] c1[a[i]].append(fp[i + 1]) c2[b[i]].append(fp[i + 1]) def check(): if a[0] != b[0]: return False for x in c1: a1 = c1[x]; a2 = c2[x] if len(a1) != len(a2): return False a1.sort(); a2.sort() if a1[0] * a2[-1] > n and a1[-1] * a2[0] > n: return False return True print("Yes" if check() else "No")