結果

問題 No.482 あなたの名は
ユーザー pluto77pluto77
提出日時 2017-02-14 09:57:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-06-09 11:41:01
合計ジャッジ時間 5,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 WA -
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 11 ms
6,272 KB
testcase_09 AC 12 ms
6,272 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 11 ms
6,272 KB
testcase_12 WA -
testcase_13 AC 12 ms
6,272 KB
testcase_14 AC 11 ms
6,400 KB
testcase_15 AC 273 ms
23,740 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 265 ms
23,612 KB
testcase_19 AC 269 ms
23,608 KB
testcase_20 AC 268 ms
23,608 KB
testcase_21 AC 265 ms
23,484 KB
testcase_22 AC 266 ms
23,480 KB
testcase_23 AC 265 ms
23,484 KB
testcase_24 AC 269 ms
23,484 KB
testcase_25 AC 269 ms
23,612 KB
testcase_26 WA -
testcase_27 AC 273 ms
23,484 KB
testcase_28 WA -
testcase_29 AC 252 ms
23,484 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_482

n,k=map(int,raw_input().split())
d=map(int,raw_input().split())
r=[-1 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:
  d[i],d[r[i]]=d[r[i]],d[i]
  r[d[i]]=i
  r[d[r[i]]]=r[i]
  cnt+=1
if k>=cnt and k%2==cnt%2:
 print 'YES'
else:
 print 'NO'
0