結果

問題 No.2254 Reverse Only
ユーザー syndro_6syndro_6
提出日時 2023-03-24 21:47:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,094 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 131,860 KB
最終ジャッジ日時 2024-09-18 16:58:55
合計ジャッジ時間 14,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
90,300 KB
testcase_01 AC 156 ms
90,580 KB
testcase_02 AC 158 ms
90,196 KB
testcase_03 AC 164 ms
90,664 KB
testcase_04 AC 158 ms
90,528 KB
testcase_05 AC 161 ms
90,192 KB
testcase_06 AC 159 ms
90,532 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 304 ms
130,704 KB
testcase_10 AC 234 ms
127,396 KB
testcase_11 AC 307 ms
130,576 KB
testcase_12 AC 303 ms
131,220 KB
testcase_13 AC 309 ms
130,584 KB
testcase_14 AC 312 ms
131,336 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 309 ms
131,220 KB
testcase_19 WA -
testcase_20 AC 291 ms
130,972 KB
testcase_21 AC 290 ms
130,856 KB
testcase_22 AC 228 ms
125,960 KB
testcase_23 AC 243 ms
127,900 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 158 ms
90,564 KB
testcase_28 AC 189 ms
100,872 KB
testcase_29 AC 236 ms
119,108 KB
testcase_30 WA -
testcase_31 AC 186 ms
102,244 KB
testcase_32 AC 194 ms
104,544 KB
testcase_33 AC 169 ms
93,460 KB
testcase_34 AC 251 ms
117,848 KB
testcase_35 AC 217 ms
114,152 KB
testcase_36 AC 288 ms
125,392 KB
testcase_37 AC 292 ms
125,640 KB
testcase_38 AC 180 ms
98,464 KB
testcase_39 WA -
testcase_40 AC 160 ms
90,452 KB
testcase_41 AC 211 ms
110,552 KB
testcase_42 AC 184 ms
99,008 KB
testcase_43 AC 256 ms
115,604 KB
testcase_44 AC 307 ms
129,612 KB
testcase_45 WA -
testcase_46 AC 160 ms
90,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, deque
from math import gcd, inf, factorial
from bisect import bisect_left, bisect_right, insort_left, insort_right
from heapq import heapify, heappop, heappush
from decimal import Decimal
from copy import deepcopy
from pprint import pprint

MOD = 998244353

input = lambda : sys.stdin.readline().rstrip()
LIP = lambda : list(map(int, input().split()))
LSP = lambda : list(input().split())
TIP = lambda : tuple(map(int, input().split()))
TSP = lambda : tuple(input().split())
SIP = lambda : set(map(int, input().split()))
SSP = lambda : set(input().split())
yes = lambda : print("Yes")
no = lambda : print("No")
dame = lambda : print(-1)
mint = lambda n: (n + MOD) % MOD

#----------------------------------------------

def main():
    N, K = LIP()
    A = LIP()
    B = LIP()
    sortedA = sorted(A)
    sortedB = sorted(B)
    if sortedA != sortedB:
        return no()
    l = max(0, N - K + 2)
    r = min(N, K)
    for i in range(l, r):
        if A[i] != B[i]:
            return no()
    return yes()

if __name__ == '__main__':
    main()
0