結果

問題 No.482 あなたの名は
ユーザー motimoti
提出日時 2018-05-24 00:00:32
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-06-28 16:35:45
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,760 KB
testcase_01 AC 6 ms
5,632 KB
testcase_02 AC 7 ms
5,632 KB
testcase_03 AC 6 ms
5,632 KB
testcase_04 AC 7 ms
5,632 KB
testcase_05 AC 6 ms
5,632 KB
testcase_06 AC 6 ms
5,632 KB
testcase_07 AC 7 ms
5,632 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 7 ms
5,760 KB
testcase_11 AC 6 ms
5,632 KB
testcase_12 AC 6 ms
5,632 KB
testcase_13 AC 6 ms
5,632 KB
testcase_14 AC 6 ms
5,632 KB
testcase_15 AC 127 ms
28,672 KB
testcase_16 AC 125 ms
28,672 KB
testcase_17 AC 125 ms
28,672 KB
testcase_18 AC 125 ms
28,672 KB
testcase_19 AC 124 ms
28,672 KB
testcase_20 AC 130 ms
28,800 KB
testcase_21 AC 128 ms
28,672 KB
testcase_22 AC 123 ms
28,672 KB
testcase_23 AC 127 ms
28,800 KB
testcase_24 AC 127 ms
28,672 KB
testcase_25 AC 128 ms
28,800 KB
testcase_26 AC 129 ms
28,672 KB
testcase_27 AC 131 ms
28,672 KB
testcase_28 AC 126 ms
28,672 KB
testcase_29 AC 124 ms
28,672 KB
testcase_30 AC 6 ms
5,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my ($n, $k) = split / /, <>;
my @d = split / /, <>;

my $count = 0;
for (my $i = 0; $i < $n;) {
  if ($i != $d[$i] - 1) {
    ($d[$i], $d[$d[$i] - 1]) = ($d[$d[$i] - 1], $d[$i]);
    $count++;
  } else {
    $i++;
  }
}
print abs($count - $k) % 2 == 0 ? "YES\n" : "NO\n";
0