結果

問題 No.1779 Magical Swap
ユーザー ああああ
提出日時 2023-01-16 12:05:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 117,112 KB
最終ジャッジ日時 2024-06-09 19:02:14
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,144 KB
testcase_01 AC 37 ms
54,440 KB
testcase_02 AC 136 ms
77,884 KB
testcase_03 AC 48 ms
66,636 KB
testcase_04 AC 74 ms
95,140 KB
testcase_05 AC 53 ms
78,864 KB
testcase_06 AC 54 ms
80,912 KB
testcase_07 AC 71 ms
95,884 KB
testcase_08 AC 39 ms
61,804 KB
testcase_09 AC 72 ms
85,312 KB
testcase_10 AC 134 ms
115,676 KB
testcase_11 AC 95 ms
90,672 KB
testcase_12 AC 67 ms
80,600 KB
testcase_13 AC 119 ms
105,444 KB
testcase_14 AC 136 ms
117,112 KB
testcase_15 AC 392 ms
77,288 KB
testcase_16 AC 75 ms
93,480 KB
testcase_17 AC 138 ms
77,888 KB
testcase_18 AC 35 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
T=int(input())

for _ in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))
    if A[0]!=B[0]:
        print("No")
        continue
    dict_A=defaultdict(int)
    dict_B=defaultdict(int)
    ans="Yes"
    check=[False]*(N+1)
    for i in range(2,N+1):
        if check[i]:
            continue
        if 2*i>N:
            if A[i-1]!=B[i-1]:
                ans="No"
            continue
        for j in range(i,N+1,i):
            if check[j]:
                continue
            check[j]=True
            dict_A[A[j-1]]+=1
            dict_B[B[j-1]]+=1
    for k in dict_A.keys():
        if dict_A[k]!=dict_B[k]:
            ans="No"
            break
    print(ans)
0