結果

問題 No.482 あなたの名は
ユーザー zazaboonzazaboon
提出日時 2017-02-10 22:37:03
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-06-08 18:10:19
合計ジャッジ時間 5,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 81 ms
12,032 KB
testcase_03 AC 80 ms
12,416 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 87 ms
12,288 KB
testcase_06 AC 83 ms
12,416 KB
testcase_07 AC 86 ms
12,288 KB
testcase_08 WA -
testcase_09 AC 80 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 83 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 180 ms
26,496 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 191 ms
26,624 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 185 ms
26,496 KB
testcase_24 AC 186 ms
26,368 KB
testcase_25 AC 186 ms
26,496 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 173 ms
26,496 KB
testcase_29 AC 171 ms
26,752 KB
testcase_30 AC 79 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k = gets.chomp.split(" ").map(&:to_i)
a = gets.chomp.split(" ").map(&:to_i)
count = 0
(0..(n-1)).each do |d|
  if(a[d] != (d+1))
    count += 1 
    a[a[d]-1] = a[d]
  end
end
puts ((k - (count))%2 == 0)? "YES" : "NO"
0