結果

問題 No.482 あなたの名は
ユーザー ototonariototonari
提出日時 2017-03-22 22:54:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-07-05 17:48:47
合計ジャッジ時間 3,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        
        static void Main()
        {
            string[] s = Console.ReadLine().Split(' ');
            string[] t = Console.ReadLine().Split(' ');
            long K = long.Parse(s[1]);
            long C = 0;
            for (int i = 0; i < t.Length; i++)
            {
                if (long.Parse(t[i]) != i + 1) C++;
            }
            if(C != 0 && C % 3 == 0)
            {
                C = (C / 2) + 1;
            }
            else
            {
                C /= 2;
            }
            Console.WriteLine((K - C) % 2 == 0 ? "YES" : "NO");
            Console.ReadLine();
        }
    }

}
0