結果

問題 No.482 あなたの名は
ユーザー takakintakakin
提出日時 2020-05-07 22:07:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,732 KB
最終ジャッジ日時 2024-07-03 09:35:49
合計ジャッジ時間 5,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 230 ms
41,692 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 233 ms
41,732 KB
testcase_19 AC 239 ms
41,512 KB
testcase_20 AC 233 ms
41,640 KB
testcase_21 AC 237 ms
41,648 KB
testcase_22 AC 239 ms
41,540 KB
testcase_23 AC 244 ms
41,544 KB
testcase_24 AC 245 ms
41,628 KB
testcase_25 AC 234 ms
41,508 KB
testcase_26 WA -
testcase_27 AC 233 ms
41,560 KB
testcase_28 WA -
testcase_29 AC 216 ms
41,516 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