結果

問題 No.1779 Magical Swap
ユーザー titiatitia
提出日時 2021-12-08 18:45:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 117,936 KB
最終ジャッジ日時 2024-07-16 08:08:00
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
86,020 KB
testcase_01 AC 76 ms
86,260 KB
testcase_02 AC 131 ms
99,624 KB
testcase_03 AC 81 ms
88,808 KB
testcase_04 AC 138 ms
112,684 KB
testcase_05 AC 102 ms
106,208 KB
testcase_06 AC 108 ms
109,724 KB
testcase_07 AC 127 ms
112,672 KB
testcase_08 AC 79 ms
86,996 KB
testcase_09 AC 96 ms
100,668 KB
testcase_10 AC 144 ms
113,316 KB
testcase_11 AC 122 ms
111,732 KB
testcase_12 AC 92 ms
96,104 KB
testcase_13 AC 135 ms
112,384 KB
testcase_14 AC 150 ms
117,936 KB
testcase_15 AC 177 ms
100,420 KB
testcase_16 AC 139 ms
113,880 KB
testcase_17 AC 138 ms
99,384 KB
testcase_18 AC 77 ms
85,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

x=10**6

import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
Primes=set(Primes)

T=int(input())
for tests in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))
    
    flag=1

    if sorted(A)!=sorted(B):
        print("No")
        continue

    if A[0]!=B[0]:
        print("No")
        continue

    for i in range(N):
        if (i+1) in Primes and (i+1)>N//2 and A[i]!=B[i]:
            flag=0
            break

    if flag==1:
        print("Yes")
    else:
        print("No")
        

    
0