結果

問題 No.1779 Magical Swap
ユーザー pluto77pluto77
提出日時 2022-02-24 16:41:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,259 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,832 KB
最終ジャッジ日時 2024-07-02 13:03:38
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 73 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 200 ms
24,548 KB
testcase_05 AC 89 ms
16,436 KB
testcase_06 AC 100 ms
17,340 KB
testcase_07 AC 166 ms
21,768 KB
testcase_08 AC 31 ms
11,136 KB
testcase_09 AC 62 ms
14,304 KB
testcase_10 AC 202 ms
25,380 KB
testcase_11 AC 109 ms
18,204 KB
testcase_12 AC 53 ms
13,420 KB
testcase_13 AC 156 ms
21,164 KB
testcase_14 AC 223 ms
24,728 KB
testcase_15 AC 1,259 ms
10,624 KB
testcase_16 AC 213 ms
25,832 KB
testcase_17 AC 141 ms
10,752 KB
testcase_18 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1779
import math
def isPrime(n):
 if n==2:
  return True
 if n%2==0:
  return False
 m=math.floor(math.sqrt(n))+1
 for p in range(3,m,2):
  if n%p==0:
   return False
 return True

t=int(input())
for _ in range(t):
 n=int(input())
 a=list(map(int,input().split()))
 b=list(map(int,input().split()))
 flag=0
 for i in range(n):
  if(isPrime(i+1) and (i+1)*2>n) or i==0:
   if(a[i]!=b[i]):
    flag=1
 if sorted(a)!=sorted(b):
  flag=1
 if flag==0:
  print("Yes")
 else:
  print("No")
0