結果

問題 No.1779 Magical Swap
ユーザー gr1msl3ygr1msl3y
提出日時 2021-12-25 01:39:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 97,656 KB
最終ジャッジ日時 2024-09-20 01:03:04
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,892 KB
testcase_01 AC 46 ms
63,668 KB
testcase_02 AC 123 ms
78,296 KB
testcase_03 AC 49 ms
65,996 KB
testcase_04 AC 113 ms
92,412 KB
testcase_05 AC 73 ms
84,444 KB
testcase_06 AC 80 ms
88,160 KB
testcase_07 AC 103 ms
93,060 KB
testcase_08 AC 48 ms
64,684 KB
testcase_09 AC 65 ms
77,580 KB
testcase_10 AC 122 ms
92,588 KB
testcase_11 AC 90 ms
90,088 KB
testcase_12 AC 60 ms
73,348 KB
testcase_13 AC 104 ms
92,380 KB
testcase_14 AC 124 ms
97,656 KB
testcase_15 AC 255 ms
86,152 KB
testcase_16 AC 117 ms
96,124 KB
testcase_17 AC 126 ms
77,944 KB
testcase_18 AC 46 ms
63,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**5
primeset=set()
isprime=[1]*(M+1)
isprime[0]=isprime[1]=0
for i in range(2,M+1):
    if not isprime[i]: continue
    primeset.add(i)
    for j in range(i*i,M+1,i):
        isprime[j]=0


def solve(N,A,B):
    if sorted(A)!=sorted(B): return False
    if A[0]!=B[0]: return False
    for i in range(1,N+1):
        if i not in primeset: continue
        if i*2<=N: continue
        if A[i-1]!=B[i-1]:
            return False
    else: return True

def main():
    T=int(input())
    ans=[]
    for _ in range(T):
        N=int(input())
        A=list(map(int,input().split()))
        B=list(map(int,input().split()))
        ans.append('Yes' if solve(N,A,B) else 'No')
    print(*ans,sep='\n')

main()
0