結果

問題 No.406 鴨等間隔の法則
ユーザー funakoshi
提出日時 2019-06-28 09:38:49
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,667 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 109,768 KB
実行使用メモリ 37,056 KB
最終ジャッジ日時 2024-07-02 04:01:49
合計ジャッジ時間 9,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 TLE * 1 -- * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            string[] input2 = Console.ReadLine().Split(' ');
            int n = int.Parse(input);
            int[] kamo = new int[input2.Length];
            int[] sa = new int[kamo.Length-1];
            bool flg = true;
            for(int i=0;i<kamo.Length;i++)
            {
                kamo[i] = int.Parse(input2[i]);
            }
            Array.Sort(kamo);
            Array.Reverse(kamo);
            for (int i = 0; i < kamo.Length - 1; i++)
            {
                sa[i] = kamo[i] - kamo[i+1];
                for (int j = i + 1; j < kamo.Length-1; j++)
                {
                    if(kamo[i]==kamo[j])
                    {
                        flg = false;
                        break;
                    }
                    
                }
                if(flg==false)
                {
                    break;
                }
            }
            if (flg == true)
            {
                for (int i = 0; i < sa.Length - 1; i++)
                {
                    if (sa[i] != sa[i + 1])
                    {
                        flg = false;
                        break;
                    }
                }
            }
            if(flg==true)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }

    }
}
0