結果

問題 No.1779 Magical Swap
ユーザー WizistWizist
提出日時 2021-12-12 22:56:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 99,456 KB
最終ジャッジ日時 2024-07-21 11:25:01
合計ジャッジ時間 3,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
61,184 KB
testcase_01 AC 60 ms
61,896 KB
testcase_02 AC 162 ms
78,080 KB
testcase_03 AC 66 ms
64,768 KB
testcase_04 AC 107 ms
92,032 KB
testcase_05 AC 80 ms
81,152 KB
testcase_06 AC 79 ms
83,584 KB
testcase_07 AC 101 ms
94,848 KB
testcase_08 AC 63 ms
63,360 KB
testcase_09 AC 81 ms
76,288 KB
testcase_10 AC 149 ms
92,160 KB
testcase_11 AC 115 ms
88,864 KB
testcase_12 AC 76 ms
71,808 KB
testcase_13 AC 132 ms
93,696 KB
testcase_14 AC 155 ms
99,456 KB
testcase_15 AC 473 ms
78,080 KB
testcase_16 AC 97 ms
94,720 KB
testcase_17 AC 147 ms
77,568 KB
testcase_18 AC 51 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def lcm(x, y): return x * y // math.gcd(x, y)

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()))
	def check():
		if a[0] != b[0]: return False
		for i in range(1, len(a)):
			if a[i] == b[i]: continue
			if lcm(fp[i + 1], 2) > n: return False
		a.sort(); b.sort()
		return a == b

	print("Yes" if check() else "No")
0