結果

問題 No.1779 Magical Swap
ユーザー WizistWizist
提出日時 2021-12-12 22:55:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 103,468 KB
最終ジャッジ日時 2024-07-21 11:24:09
合計ジャッジ時間 3,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 138 ms
77,312 KB
testcase_03 WA -
testcase_04 AC 87 ms
98,816 KB
testcase_05 AC 62 ms
76,160 KB
testcase_06 AC 61 ms
78,592 KB
testcase_07 AC 77 ms
95,232 KB
testcase_08 AC 43 ms
58,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 443 ms
76,800 KB
testcase_16 AC 89 ms
97,820 KB
testcase_17 WA -
testcase_18 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

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(i + 1, 2) > n: return False
		a.sort(); b.sort()
		return a == b

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