結果

問題 No.1779 Magical Swap
ユーザー ああいいああいい
提出日時 2021-12-28 16:26:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,372 KB
最終ジャッジ日時 2024-10-02 09:04:23
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 132 ms
25,248 KB
testcase_05 AC 96 ms
17,932 KB
testcase_06 AC 99 ms
18,664 KB
testcase_07 AC 122 ms
23,424 KB
testcase_08 AC 82 ms
12,544 KB
testcase_09 AC 105 ms
16,176 KB
testcase_10 AC 205 ms
25,872 KB
testcase_11 AC 142 ms
19,800 KB
testcase_12 AC 96 ms
14,976 KB
testcase_13 AC 172 ms
22,916 KB
testcase_14 AC 217 ms
25,752 KB
testcase_15 AC 1,101 ms
12,416 KB
testcase_16 AC 135 ms
27,372 KB
testcase_17 WA -
testcase_18 AC 79 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

prime = set()
C = 10 ** 5 + 1
dat = [0] * C
i = 2
while i < C:
    if dat[i] == 0:
        prime.add(i)
        for j in range(i * 2,C,i):
            dat[j] = 1
    i += 1

for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    B = list(map(int,input().split()))
    a = []
    b = []
    if A[0] != B[0]:
        print('No')
        continue
    flag = True
    for i in range(1,N):
        if (i+1) * 2 > N and i + 1 in prime:
            if A[i] != B[i]:
                flag = False
                break
        else:
            a.append(A[i])
            b.append(B[i])
    if flag:
        a.sort()
        b.sort()
        if a == b:
            print('Yes')
        else:
            print('No')
0