結果

問題 No.482 あなたの名は
ユーザー 14番14番
提出日時 2017-02-12 00:22:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,601 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 107,776 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-06-09 10:01:20
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,328 KB
testcase_01 AC 28 ms
18,816 KB
testcase_02 AC 28 ms
19,200 KB
testcase_03 AC 28 ms
19,072 KB
testcase_04 AC 29 ms
19,072 KB
testcase_05 AC 29 ms
19,200 KB
testcase_06 AC 29 ms
19,328 KB
testcase_07 AC 34 ms
19,712 KB
testcase_08 WA -
testcase_09 AC 33 ms
19,584 KB
testcase_10 AC 32 ms
19,456 KB
testcase_11 AC 33 ms
19,456 KB
testcase_12 WA -
testcase_13 AC 33 ms
19,200 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 96 ms
36,096 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 100 ms
36,096 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 98 ms
35,968 KB
testcase_24 AC 98 ms
36,224 KB
testcase_25 AC 95 ms
35,968 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 98 ms
36,224 KB
testcase_29 AC 94 ms
36,096 KB
testcase_30 AC 25 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Text;
 
public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        bool ans = this.GetAns();
        Console.WriteLine(ans?"YES":"NO");
    }

    private bool GetAns() {
        long[] inpt = Reader.ReadLine().Split(' ').Select(a=>long.Parse(a)).ToArray();
        int itemCount = (int)inpt[0];
        long nokori = inpt[1];

        int[] items = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();
        for(int i=1; i<=itemCount; i++) {
            if(items[i-1] != i) {
                if(nokori <= 0) {
                    return false;
                }
                int num = items[i-1];
                int num2 = items[num-1];
                items[i-1] = num2;
                items[num-1] = num;
                nokori--;
            }
        }
        return nokori % 2 == 0;
    }




    public class Reader {
        public static bool IsDebug = true;
        private static System.IO.StringReader SReader;
        private static string InitText = @"


4 2
1 2 3 4

";
        public static string ReadLine() {
            if(IsDebug) {
                if(SReader == null) {
                    SReader = new System.IO.StringReader(InitText.Trim());
                }
                return SReader.ReadLine();
            } else {
                return Console.ReadLine();
            }
        }
    }
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0