結果

問題 No.406 鴨等間隔の法則
ユーザー funakoshifunakoshi
提出日時 2019-06-28 09:54:41
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,624 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 100,556 KB
実行使用メモリ 28,080 KB
最終ジャッジ日時 2023-09-14 21:11:46
合計ジャッジ時間 13,091 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
20,796 KB
testcase_01 AC 58 ms
18,700 KB
testcase_02 AC 58 ms
20,712 KB
testcase_03 AC 59 ms
20,668 KB
testcase_04 AC 614 ms
27,776 KB
testcase_05 AC 232 ms
22,684 KB
testcase_06 AC 630 ms
24,696 KB
testcase_07 AC 936 ms
24,828 KB
testcase_08 AC 451 ms
27,712 KB
testcase_09 AC 843 ms
28,080 KB
testcase_10 AC 662 ms
22,960 KB
testcase_11 AC 568 ms
27,088 KB
testcase_12 AC 140 ms
23,316 KB
testcase_13 AC 942 ms
23,716 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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];
            bool flg = true;
            for(int i=0;i<kamo.Length;i++)
            {
                kamo[i] = int.Parse(input2[i]);
            }
            Array.Sort(kamo);
            Array.Reverse(kamo);
            int sa = kamo[0] - kamo[1];
            for (int i = 0; i < kamo.Length - 1; i++)
            {
                for (int j = i + 1; j < kamo.Length; j++)
                {
                    if(kamo[i]==kamo[j])
                    {
                        flg = false;
                        break;
                    }
                    
                }
                if(flg==false)
                {
                    break;
                }
            }
            if (flg == true)
            {
                for (int i = 0; i < kamo.Length - 1; i++)
                {
                    if (sa != kamo[i] - kamo[i + 1])
                    {
                        flg = false;
                        break;
                    }
                }
            }
            if(flg==true)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }

    }
}
0