結果

問題 No.2254 Reverse Only
ユーザー flygonflygon
提出日時 2023-03-24 23:25:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 116,052 KB
最終ジャッジ日時 2024-09-18 17:38:18
合計ジャッジ時間 7,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,672 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
53,160 KB
testcase_03 AC 39 ms
52,944 KB
testcase_04 AC 39 ms
52,280 KB
testcase_05 AC 38 ms
53,136 KB
testcase_06 AC 39 ms
51,692 KB
testcase_07 AC 39 ms
52,356 KB
testcase_08 AC 199 ms
114,832 KB
testcase_09 WA -
testcase_10 AC 122 ms
108,820 KB
testcase_11 AC 201 ms
114,544 KB
testcase_12 AC 193 ms
115,184 KB
testcase_13 AC 127 ms
108,556 KB
testcase_14 AC 120 ms
108,552 KB
testcase_15 AC 130 ms
110,336 KB
testcase_16 AC 198 ms
113,392 KB
testcase_17 AC 198 ms
115,580 KB
testcase_18 AC 195 ms
115,456 KB
testcase_19 AC 179 ms
114,960 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 138 ms
111,524 KB
testcase_25 AC 141 ms
113,176 KB
testcase_26 AC 142 ms
113,284 KB
testcase_27 AC 44 ms
60,612 KB
testcase_28 AC 73 ms
80,188 KB
testcase_29 AC 79 ms
100,356 KB
testcase_30 AC 106 ms
98,420 KB
testcase_31 AC 60 ms
78,824 KB
testcase_32 AC 62 ms
81,108 KB
testcase_33 AC 49 ms
69,212 KB
testcase_34 AC 95 ms
106,780 KB
testcase_35 AC 71 ms
92,420 KB
testcase_36 AC 177 ms
107,000 KB
testcase_37 AC 181 ms
107,932 KB
testcase_38 AC 55 ms
74,224 KB
testcase_39 AC 172 ms
103,668 KB
testcase_40 AC 43 ms
60,032 KB
testcase_41 AC 68 ms
88,016 KB
testcase_42 AC 55 ms
74,912 KB
testcase_43 AC 95 ms
104,808 KB
testcase_44 AC 120 ms
107,440 KB
testcase_45 AC 133 ms
104,024 KB
testcase_46 AC 43 ms
59,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

if    a== b or (k < n and sorted(a) == sorted(b)) or (k == n and a == b[::-1]):
    print('Yes')
    exit()


print('No')
0