結果

問題 No.482 あなたの名は
ユーザー takakintakakin
提出日時 2020-05-07 22:12:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,892 KB
最終ジャッジ日時 2024-07-03 09:35:25
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 251 ms
40,820 KB
testcase_16 AC 252 ms
40,840 KB
testcase_17 AC 262 ms
40,784 KB
testcase_18 AC 253 ms
40,876 KB
testcase_19 AC 255 ms
40,636 KB
testcase_20 AC 265 ms
40,692 KB
testcase_21 AC 257 ms
40,808 KB
testcase_22 AC 252 ms
40,816 KB
testcase_23 AC 253 ms
40,892 KB
testcase_24 AC 250 ms
40,800 KB
testcase_25 AC 258 ms
40,808 KB
testcase_26 AC 254 ms
40,708 KB
testcase_27 AC 258 ms
40,868 KB
testcase_28 AC 258 ms
40,888 KB
testcase_29 AC 243 ms
40,764 KB
testcase_30 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,k=map(int,input().split())
D=[int(i) for i in input().split()]
P=dict()
for i,d in enumerate(D):
  P[d]=i
ct=0
for i in range(n):
  if D[i]==i+1:
    continue
  else:
    ct+=1
    D[P[i+1]]=D[i]
    P[D[i]]=P[i+1]
if ct<=k and ct%2==k%2:
  print("YES")
else:
  print("NO")
0