結果

問題 No.482 あなたの名は
ユーザー takakintakakin
提出日時 2020-05-07 22:07:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 10,828 KB
実行使用メモリ 38,496 KB
最終ジャッジ日時 2023-09-16 08:06:54
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,920 KB
testcase_01 AC 18 ms
7,776 KB
testcase_02 AC 16 ms
7,824 KB
testcase_03 AC 16 ms
7,952 KB
testcase_04 AC 17 ms
7,916 KB
testcase_05 WA -
testcase_06 AC 16 ms
7,920 KB
testcase_07 AC 17 ms
8,340 KB
testcase_08 AC 17 ms
7,792 KB
testcase_09 AC 16 ms
7,980 KB
testcase_10 AC 16 ms
7,832 KB
testcase_11 AC 17 ms
8,324 KB
testcase_12 WA -
testcase_13 AC 16 ms
7,816 KB
testcase_14 AC 17 ms
7,960 KB
testcase_15 AC 212 ms
38,364 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 218 ms
38,424 KB
testcase_19 AC 222 ms
38,372 KB
testcase_20 AC 218 ms
38,452 KB
testcase_21 AC 221 ms
38,324 KB
testcase_22 AC 214 ms
38,324 KB
testcase_23 AC 218 ms
38,496 KB
testcase_24 AC 223 ms
38,452 KB
testcase_25 AC 220 ms
38,416 KB
testcase_26 WA -
testcase_27 AC 223 ms
38,428 KB
testcase_28 WA -
testcase_29 AC 185 ms
38,384 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
if ct<=k and ct%2==k%2:
  print("YES")
else:
  print("NO")
0