結果

問題 No.406 鴨等間隔の法則
ユーザー 14番14番
提出日時 2016-09-01 09:22:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,900 bytes
コンパイル時間 1,031 ms
コンパイル使用メモリ 115,388 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-07-07 11:42:11
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
23,552 KB
testcase_01 AC 34 ms
19,328 KB
testcase_02 AC 35 ms
19,200 KB
testcase_03 AC 29 ms
18,944 KB
testcase_04 AC 67 ms
28,032 KB
testcase_05 AC 48 ms
22,912 KB
testcase_06 AC 47 ms
22,932 KB
testcase_07 AC 48 ms
22,920 KB
testcase_08 AC 67 ms
28,032 KB
testcase_09 AC 70 ms
28,544 KB
testcase_10 AC 50 ms
23,552 KB
testcase_11 AC 64 ms
27,904 KB
testcase_12 AC 55 ms
24,960 KB
testcase_13 AC 53 ms
24,244 KB
testcase_14 AC 116 ms
32,896 KB
testcase_15 AC 35 ms
19,968 KB
testcase_16 AC 45 ms
20,736 KB
testcase_17 AC 42 ms
19,968 KB
testcase_18 AC 45 ms
20,864 KB
testcase_19 AC 46 ms
20,864 KB
testcase_20 AC 49 ms
21,032 KB
testcase_21 AC 50 ms
20,916 KB
testcase_22 AC 59 ms
22,912 KB
testcase_23 AC 54 ms
24,412 KB
testcase_24 AC 104 ms
30,208 KB
testcase_25 AC 71 ms
29,440 KB
testcase_26 AC 134 ms
35,072 KB
testcase_27 AC 70 ms
28,544 KB
testcase_28 AC 69 ms
28,416 KB
testcase_29 AC 133 ms
34,944 KB
testcase_30 AC 130 ms
34,560 KB
testcase_31 AC 69 ms
28,416 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;
using System.Text;
using System.Linq;


class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int kamoCount = int.Parse(Reader.ReadLine());
        int[] kamoList = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();
        Dictionary<int, bool> dic = new Dictionary<int, bool>();

        string ans = "YES";
        for (int i = 0; i < kamoList.Length; i++)
        {
            if (dic.ContainsKey(kamoList[i]))
            {
                ans = "NO";
                break;
            }
            dic.Add(kamoList[i], true);
        }

        if (ans.Equals("YES"))
        {
            List<int> keys = dic.Keys.OrderBy(a=>a).ToList();
            int prev = -1;
            for (int i = 1; i < keys.Count; i++)
            {
                if (prev > 0)
                {
                    if (prev != keys[i] - keys[i - 1])
                    {
                        ans = "NO";
                        break;
                    }
                }
                else
                {
                    prev = keys[i] - keys[i - 1];
                }
            }
        }
        Console.WriteLine(ans);

    }



    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"





";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0