結果

問題 No.482 あなたの名は
ユーザー motimoti
提出日時 2018-05-24 00:04:18
言語 Perl
(5.38.2)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-06-28 16:35:49
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,632 KB
testcase_01 AC 6 ms
5,632 KB
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 6 ms
5,632 KB
testcase_04 AC 6 ms
5,760 KB
testcase_05 AC 6 ms
5,632 KB
testcase_06 AC 6 ms
5,632 KB
testcase_07 AC 6 ms
5,632 KB
testcase_08 AC 6 ms
5,760 KB
testcase_09 AC 6 ms
5,632 KB
testcase_10 AC 6 ms
5,632 KB
testcase_11 AC 7 ms
5,760 KB
testcase_12 AC 6 ms
5,760 KB
testcase_13 AC 6 ms
5,632 KB
testcase_14 AC 6 ms
5,632 KB
testcase_15 AC 123 ms
28,800 KB
testcase_16 AC 126 ms
28,928 KB
testcase_17 AC 126 ms
28,800 KB
testcase_18 AC 125 ms
28,800 KB
testcase_19 AC 122 ms
28,800 KB
testcase_20 AC 124 ms
28,928 KB
testcase_21 AC 127 ms
28,672 KB
testcase_22 AC 125 ms
28,928 KB
testcase_23 AC 123 ms
28,800 KB
testcase_24 AC 123 ms
28,800 KB
testcase_25 AC 121 ms
28,800 KB
testcase_26 AC 125 ms
28,800 KB
testcase_27 AC 124 ms
28,800 KB
testcase_28 AC 124 ms
28,800 KB
testcase_29 AC 121 ms
28,928 KB
testcase_30 AC 7 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 $count <= $k && ($k - $count) % 2 == 0 ? "YES\n" : "NO\n";
0