結果

問題 No.2254 Reverse Only
ユーザー flygonflygon
提出日時 2023-03-24 23:20:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 115,756 KB
最終ジャッジ日時 2024-09-18 17:35:57
合計ジャッジ時間 7,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,984 KB
testcase_01 AC 38 ms
52,024 KB
testcase_02 AC 39 ms
52,624 KB
testcase_03 AC 38 ms
52,304 KB
testcase_04 AC 39 ms
52,196 KB
testcase_05 AC 38 ms
52,232 KB
testcase_06 AC 39 ms
53,336 KB
testcase_07 AC 39 ms
52,928 KB
testcase_08 AC 200 ms
114,304 KB
testcase_09 WA -
testcase_10 AC 123 ms
108,688 KB
testcase_11 AC 199 ms
114,656 KB
testcase_12 AC 196 ms
114,796 KB
testcase_13 AC 128 ms
108,284 KB
testcase_14 AC 125 ms
110,196 KB
testcase_15 AC 127 ms
110,056 KB
testcase_16 AC 198 ms
113,260 KB
testcase_17 AC 203 ms
115,068 KB
testcase_18 AC 198 ms
115,168 KB
testcase_19 AC 181 ms
114,828 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 142 ms
111,160 KB
testcase_25 AC 144 ms
112,700 KB
testcase_26 AC 145 ms
112,768 KB
testcase_27 AC 43 ms
61,252 KB
testcase_28 AC 73 ms
79,500 KB
testcase_29 AC 82 ms
100,680 KB
testcase_30 AC 107 ms
98,408 KB
testcase_31 AC 61 ms
79,360 KB
testcase_32 AC 62 ms
81,412 KB
testcase_33 AC 51 ms
69,412 KB
testcase_34 AC 95 ms
106,712 KB
testcase_35 AC 72 ms
92,096 KB
testcase_36 AC 176 ms
106,796 KB
testcase_37 AC 186 ms
107,488 KB
testcase_38 AC 55 ms
74,444 KB
testcase_39 AC 166 ms
103,260 KB
testcase_40 AC 41 ms
60,920 KB
testcase_41 AC 71 ms
89,020 KB
testcase_42 AC 57 ms
74,448 KB
testcase_43 AC 97 ms
104,304 KB
testcase_44 AC 124 ms
108,328 KB
testcase_45 AC 135 ms
103,480 KB
testcase_46 AC 43 ms
61,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())

a = list(map(int,input().split()))
b = list(map(int,input().split()))

if    a== b:
    print('Yes')
    exit()



if k >= n and a != b[::-1]:
    print('No')
    exit()

if k == n:
    print('Yes')
    exit()

if sorted(a) ==   sorted(b):
    print('Yes')
    exit()

print('No')
0