結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,776 KB
testcase_01 AC 31 ms
52,756 KB
testcase_02 AC 34 ms
52,080 KB
testcase_03 AC 39 ms
52,688 KB
testcase_04 AC 32 ms
52,148 KB
testcase_05 AC 33 ms
52,576 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 171 ms
114,920 KB
testcase_09 WA -
testcase_10 AC 109 ms
108,944 KB
testcase_11 AC 174 ms
114,800 KB
testcase_12 AC 169 ms
115,324 KB
testcase_13 AC 112 ms
108,540 KB
testcase_14 AC 107 ms
108,924 KB
testcase_15 WA -
testcase_16 AC 177 ms
113,648 KB
testcase_17 AC 174 ms
115,456 KB
testcase_18 AC 170 ms
115,556 KB
testcase_19 AC 157 ms
115,344 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 125 ms
111,532 KB
testcase_25 AC 126 ms
113,168 KB
testcase_26 AC 133 ms
112,888 KB
testcase_27 AC 39 ms
61,508 KB
testcase_28 AC 65 ms
79,588 KB
testcase_29 AC 70 ms
99,988 KB
testcase_30 AC 93 ms
98,692 KB
testcase_31 AC 56 ms
79,628 KB
testcase_32 AC 55 ms
81,512 KB
testcase_33 AC 42 ms
69,224 KB
testcase_34 AC 82 ms
106,940 KB
testcase_35 AC 63 ms
91,960 KB
testcase_36 AC 154 ms
106,784 KB
testcase_37 AC 164 ms
107,860 KB
testcase_38 AC 49 ms
74,144 KB
testcase_39 AC 149 ms
103,620 KB
testcase_40 AC 36 ms
61,136 KB
testcase_41 AC 60 ms
88,016 KB
testcase_42 AC 50 ms
75,140 KB
testcase_43 AC 84 ms
104,888 KB
testcase_44 AC 103 ms
107,296 KB
testcase_45 AC 115 ms
103,700 KB
testcase_46 AC 35 ms
61,248 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] or a ==  b:
    print('Yes')
    exit()




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

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

print('No')
0