結果

問題 No.2254 Reverse Only
ユーザー flygonflygon
提出日時 2023-03-24 23:21:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 116,120 KB
最終ジャッジ日時 2024-09-18 17:36:52
合計ジャッジ時間 6,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,420 KB
testcase_01 AC 34 ms
52,424 KB
testcase_02 AC 33 ms
52,208 KB
testcase_03 AC 31 ms
52,416 KB
testcase_04 AC 33 ms
51,944 KB
testcase_05 AC 34 ms
52,520 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 181 ms
114,924 KB
testcase_09 WA -
testcase_10 AC 114 ms
108,412 KB
testcase_11 AC 180 ms
114,656 KB
testcase_12 AC 177 ms
115,300 KB
testcase_13 AC 118 ms
108,268 KB
testcase_14 AC 109 ms
108,548 KB
testcase_15 WA -
testcase_16 AC 176 ms
113,248 KB
testcase_17 AC 184 ms
115,276 KB
testcase_18 AC 179 ms
115,412 KB
testcase_19 AC 159 ms
115,100 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 125 ms
111,888 KB
testcase_25 AC 125 ms
112,652 KB
testcase_26 AC 126 ms
112,660 KB
testcase_27 AC 38 ms
61,792 KB
testcase_28 AC 64 ms
79,940 KB
testcase_29 AC 69 ms
99,996 KB
testcase_30 AC 93 ms
98,696 KB
testcase_31 AC 52 ms
78,952 KB
testcase_32 AC 53 ms
80,968 KB
testcase_33 AC 42 ms
69,260 KB
testcase_34 AC 84 ms
106,812 KB
testcase_35 AC 63 ms
91,712 KB
testcase_36 AC 162 ms
107,024 KB
testcase_37 AC 166 ms
107,748 KB
testcase_38 AC 49 ms
74,320 KB
testcase_39 AC 146 ms
103,760 KB
testcase_40 AC 37 ms
60,116 KB
testcase_41 AC 60 ms
88,240 KB
testcase_42 AC 49 ms
75,452 KB
testcase_43 AC 96 ms
104,848 KB
testcase_44 AC 113 ms
107,192 KB
testcase_45 AC 116 ms
103,508 KB
testcase_46 AC 37 ms
61,024 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('Yes')
    exit()




if k >= n :
    print('No')
    exit()

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

print('No')
0