結果

問題 No.2254 Reverse Only
ユーザー syndro_6syndro_6
提出日時 2023-03-24 21:50:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,098 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 131,236 KB
最終ジャッジ日時 2024-09-18 17:00:56
合計ジャッジ時間 13,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
90,412 KB
testcase_01 AC 160 ms
90,368 KB
testcase_02 AC 163 ms
90,480 KB
testcase_03 AC 162 ms
90,544 KB
testcase_04 AC 162 ms
90,532 KB
testcase_05 AC 160 ms
90,240 KB
testcase_06 AC 158 ms
90,492 KB
testcase_07 AC 159 ms
90,240 KB
testcase_08 WA -
testcase_09 AC 314 ms
130,448 KB
testcase_10 AC 247 ms
127,524 KB
testcase_11 AC 317 ms
130,312 KB
testcase_12 AC 310 ms
131,164 KB
testcase_13 AC 319 ms
130,312 KB
testcase_14 AC 316 ms
131,080 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 315 ms
131,212 KB
testcase_19 WA -
testcase_20 AC 298 ms
130,724 KB
testcase_21 AC 296 ms
131,224 KB
testcase_22 AC 235 ms
126,240 KB
testcase_23 AC 247 ms
127,776 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 165 ms
90,400 KB
testcase_28 AC 189 ms
100,608 KB
testcase_29 AC 230 ms
119,016 KB
testcase_30 WA -
testcase_31 AC 192 ms
102,224 KB
testcase_32 AC 197 ms
104,520 KB
testcase_33 AC 176 ms
93,660 KB
testcase_34 AC 258 ms
117,852 KB
testcase_35 AC 219 ms
114,152 KB
testcase_36 AC 289 ms
125,544 KB
testcase_37 AC 294 ms
125,644 KB
testcase_38 AC 184 ms
98,264 KB
testcase_39 WA -
testcase_40 AC 172 ms
90,624 KB
testcase_41 AC 219 ms
110,464 KB
testcase_42 AC 186 ms
98,432 KB
testcase_43 AC 259 ms
115,600 KB
testcase_44 AC 303 ms
129,988 KB
testcase_45 WA -
testcase_46 AC 164 ms
90,668 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 + 1)
    r = min(N, K - 1)
    for i in range(l, r):
        if A[i] != B[i]:
            return no()
    return yes()

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