結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 201 ms
114,740 KB
testcase_09 WA -
testcase_10 AC 127 ms
108,492 KB
testcase_11 AC 207 ms
114,612 KB
testcase_12 AC 205 ms
115,052 KB
testcase_13 AC 130 ms
108,084 KB
testcase_14 AC 125 ms
108,672 KB
testcase_15 WA -
testcase_16 AC 204 ms
113,584 KB
testcase_17 AC 203 ms
115,200 KB
testcase_18 AC 196 ms
115,508 KB
testcase_19 AC 182 ms
114,756 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 142 ms
111,212 KB
testcase_25 AC 147 ms
112,844 KB
testcase_26 AC 146 ms
112,844 KB
testcase_27 AC 43 ms
59,776 KB
testcase_28 AC 75 ms
78,592 KB
testcase_29 AC 80 ms
99,072 KB
testcase_30 AC 108 ms
98,284 KB
testcase_31 AC 60 ms
77,824 KB
testcase_32 AC 62 ms
80,640 KB
testcase_33 AC 50 ms
67,968 KB
testcase_34 AC 95 ms
107,008 KB
testcase_35 AC 73 ms
90,752 KB
testcase_36 AC 178 ms
106,832 KB
testcase_37 AC 185 ms
107,872 KB
testcase_38 AC 56 ms
73,600 KB
testcase_39 AC 175 ms
103,296 KB
testcase_40 AC 46 ms
59,776 KB
testcase_41 AC 71 ms
87,424 KB
testcase_42 AC 57 ms
74,240 KB
testcase_43 AC 98 ms
104,832 KB
testcase_44 AC 125 ms
106,872 KB
testcase_45 AC 136 ms
103,692 KB
testcase_46 AC 44 ms
59,264 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:
    print('No')
    exit()


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

print('No')
0