結果

問題 No.2254 Reverse Only
ユーザー sotanishysotanishy
提出日時 2023-03-24 21:48:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 115,252 KB
最終ジャッジ日時 2024-09-18 17:00:04
合計ジャッジ時間 7,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 199 ms
113,664 KB
testcase_09 WA -
testcase_10 AC 127 ms
110,604 KB
testcase_11 AC 194 ms
113,324 KB
testcase_12 AC 191 ms
113,968 KB
testcase_13 AC 200 ms
113,716 KB
testcase_14 AC 196 ms
113,888 KB
testcase_15 AC 202 ms
115,172 KB
testcase_16 AC 196 ms
111,912 KB
testcase_17 AC 198 ms
114,348 KB
testcase_18 AC 193 ms
114,036 KB
testcase_19 AC 175 ms
113,604 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 137 ms
110,492 KB
testcase_25 AC 139 ms
111,420 KB
testcase_26 AC 142 ms
111,892 KB
testcase_27 AC 45 ms
60,160 KB
testcase_28 AC 73 ms
78,848 KB
testcase_29 AC 117 ms
103,628 KB
testcase_30 AC 105 ms
97,152 KB
testcase_31 AC 76 ms
80,512 KB
testcase_32 AC 81 ms
83,712 KB
testcase_33 AC 57 ms
69,248 KB
testcase_34 AC 137 ms
105,344 KB
testcase_35 AC 100 ms
95,744 KB
testcase_36 AC 177 ms
106,784 KB
testcase_37 AC 181 ms
107,788 KB
testcase_38 AC 67 ms
75,776 KB
testcase_39 AC 163 ms
103,472 KB
testcase_40 AC 46 ms
60,544 KB
testcase_41 AC 93 ms
91,648 KB
testcase_42 AC 68 ms
76,672 KB
testcase_43 AC 142 ms
102,784 KB
testcase_44 AC 192 ms
111,856 KB
testcase_45 AC 132 ms
101,888 KB
testcase_46 AC 46 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

if sorted(A) != sorted(B):
    print("No")
elif A == B:
    print("Yes")
elif k > N:
    print("No")
elif k <= N-1:
    # rotation + swap
    print("Yes")
else:
    # k == N
    print("Yes" if A[::-1] == B else "No")
0