結果

問題 No.406 鴨等間隔の法則
ユーザー shimadandyshimadandy
提出日時 2016-09-05 13:24:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 110,036 KB
実行使用メモリ 34,048 KB
最終ジャッジ日時 2024-07-07 11:42:55
合計ジャッジ時間 3,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
24,600 KB
testcase_01 AC 24 ms
25,956 KB
testcase_02 AC 25 ms
26,096 KB
testcase_03 AC 25 ms
24,180 KB
testcase_04 AC 72 ms
31,544 KB
testcase_05 AC 43 ms
30,428 KB
testcase_06 AC 45 ms
28,148 KB
testcase_07 AC 47 ms
28,368 KB
testcase_08 AC 73 ms
31,636 KB
testcase_09 AC 81 ms
31,984 KB
testcase_10 AC 47 ms
26,644 KB
testcase_11 AC 69 ms
30,920 KB
testcase_12 AC 52 ms
26,616 KB
testcase_13 AC 50 ms
27,432 KB
testcase_14 AC 69 ms
31,420 KB
testcase_15 AC 31 ms
24,816 KB
testcase_16 AC 32 ms
24,940 KB
testcase_17 AC 29 ms
24,752 KB
testcase_18 AC 30 ms
25,072 KB
testcase_19 AC 31 ms
26,816 KB
testcase_20 AC 31 ms
23,224 KB
testcase_21 AC 31 ms
27,348 KB
testcase_22 AC 38 ms
25,968 KB
testcase_23 AC 55 ms
29,524 KB
testcase_24 AC 67 ms
32,732 KB
testcase_25 AC 79 ms
31,904 KB
testcase_26 AC 81 ms
32,084 KB
testcase_27 AC 70 ms
32,088 KB
testcase_28 AC 75 ms
32,096 KB
testcase_29 AC 80 ms
34,048 KB
testcase_30 AC 79 ms
29,820 KB
testcase_31 AC 78 ms
33,916 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.Collections.Generic;


namespace rummy
{
    class Program
    {
        /// <summary>
        /// プログラムのエントリポイント
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Console.ReadLine();

            string[] tmp = Console.ReadLine().Split(' ');

            List<int> list = new List<int>();
            foreach (string s in tmp)
                list.Add(int.Parse(s));

            list.Sort();

            Console.WriteLine(JudgeInterval(list));
        }

        private static string JudgeInterval(List<int> list)
        {
            for (int i = 0; i < list.Count - 1; i++)
                if (list[i] == list[i + 1])
                    return "NO";

            int interval = list[0] - list[1];
            for (int i = 1; i < list.Count - 1; i++)
                if (list[i] - list[i + 1] != interval)
                    return "NO";

            return "YES";
        }
    }
}
0