結果

問題 No.482 あなたの名は
ユーザー bluemeganebluemegane
提出日時 2018-09-14 20:48:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 104,704 KB
実行使用メモリ 35,200 KB
最終ジャッジ日時 2024-07-06 05:37:21
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,920 KB
testcase_01 AC 20 ms
17,920 KB
testcase_02 AC 22 ms
17,920 KB
testcase_03 AC 21 ms
17,920 KB
testcase_04 AC 21 ms
17,920 KB
testcase_05 AC 22 ms
17,792 KB
testcase_06 AC 21 ms
17,792 KB
testcase_07 AC 24 ms
18,560 KB
testcase_08 AC 24 ms
18,304 KB
testcase_09 AC 25 ms
18,432 KB
testcase_10 AC 25 ms
18,432 KB
testcase_11 AC 24 ms
18,176 KB
testcase_12 AC 24 ms
18,432 KB
testcase_13 AC 24 ms
18,560 KB
testcase_14 AC 24 ms
18,432 KB
testcase_15 AC 84 ms
34,688 KB
testcase_16 AC 83 ms
34,816 KB
testcase_17 AC 84 ms
34,944 KB
testcase_18 AC 83 ms
35,072 KB
testcase_19 AC 86 ms
34,816 KB
testcase_20 AC 85 ms
35,072 KB
testcase_21 AC 90 ms
35,072 KB
testcase_22 AC 84 ms
35,072 KB
testcase_23 AC 87 ms
34,816 KB
testcase_24 AC 86 ms
35,072 KB
testcase_25 AC 86 ms
34,688 KB
testcase_26 AC 85 ms
35,200 KB
testcase_27 AC 86 ms
34,688 KB
testcase_28 AC 87 ms
34,688 KB
testcase_29 AC 86 ms
34,688 KB
testcase_30 AC 23 ms
17,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = long.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        var count = 0;
        var change = true;
        while (change)
        {
            change = false;
            for (int i = 0; i < n; i++)
                if (a[i] != i + 1)
                {
                    swap(a, i, a[i] - 1);
                    count++;
                    change = true;
                }
        }
        Console.WriteLine(check(k, count) ? "YES" : "NO");
    }
    public static bool check(long k, int count)
    {
        if (count > k) return false;
        if ((k - count) % 2 == 0) return true;
        else return false;
    }

    public static void swap(int[] a, int p, int q)
    {
        var t = a[p];
        a[p] = a[q];
        a[q] = t;
    }
}
0