結果

問題 No.482 あなたの名は
ユーザー pluto77pluto77
提出日時 2017-02-14 10:19:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 6,580 KB
実行使用メモリ 23,244 KB
最終ジャッジ日時 2023-08-28 16:29:42
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,928 KB
testcase_01 AC 10 ms
5,888 KB
testcase_02 AC 11 ms
6,032 KB
testcase_03 AC 10 ms
6,040 KB
testcase_04 AC 11 ms
6,004 KB
testcase_05 AC 11 ms
6,040 KB
testcase_06 AC 11 ms
6,016 KB
testcase_07 AC 12 ms
5,996 KB
testcase_08 AC 11 ms
5,984 KB
testcase_09 AC 12 ms
6,016 KB
testcase_10 AC 11 ms
5,880 KB
testcase_11 AC 12 ms
5,964 KB
testcase_12 AC 12 ms
5,928 KB
testcase_13 AC 11 ms
5,968 KB
testcase_14 AC 12 ms
5,900 KB
testcase_15 AC 237 ms
23,068 KB
testcase_16 AC 240 ms
23,152 KB
testcase_17 AC 232 ms
23,244 KB
testcase_18 AC 235 ms
23,164 KB
testcase_19 AC 238 ms
23,220 KB
testcase_20 AC 235 ms
23,204 KB
testcase_21 AC 235 ms
23,076 KB
testcase_22 AC 233 ms
23,096 KB
testcase_23 AC 237 ms
23,096 KB
testcase_24 AC 234 ms
23,204 KB
testcase_25 AC 236 ms
23,164 KB
testcase_26 AC 240 ms
23,212 KB
testcase_27 AC 236 ms
23,072 KB
testcase_28 AC 233 ms
23,096 KB
testcase_29 AC 231 ms
23,204 KB
testcase_30 AC 11 ms
5,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_482

n,k=map(int,raw_input().split())
d=map(int,raw_input().split())
r=[0 for i in xrange(n)]
for i in xrange(n):
 d[i]=d[i]-1
 r[d[i]]=i
cnt=0
for i in xrange(n):
 if d[i]!=i:
  temp=r[i]
  d[i],d[temp] = d[temp],d[i]
  r[d[i]],r[d[temp]] = i,temp
  cnt+=1
  
if k>=cnt and k%2==cnt%2:
 print 'YES'
else:
 print 'NO'
0