結果

問題 No.406 鴨等間隔の法則
ユーザー funakoshifunakoshi
提出日時 2019-06-28 10:38:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 111,516 KB
実行使用メモリ 33,496 KB
最終ジャッジ日時 2024-07-07 12:38:38
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
26,444 KB
testcase_01 AC 27 ms
24,288 KB
testcase_02 AC 28 ms
24,272 KB
testcase_03 AC 28 ms
23,912 KB
testcase_04 AC 83 ms
32,756 KB
testcase_05 AC 51 ms
26,200 KB
testcase_06 AC 52 ms
28,060 KB
testcase_07 AC 52 ms
26,052 KB
testcase_08 AC 84 ms
30,932 KB
testcase_09 AC 88 ms
33,496 KB
testcase_10 AC 53 ms
26,436 KB
testcase_11 AC 72 ms
30,408 KB
testcase_12 AC 58 ms
26,672 KB
testcase_13 AC 57 ms
27,236 KB
testcase_14 AC 78 ms
30,628 KB
testcase_15 AC 32 ms
26,732 KB
testcase_16 AC 34 ms
25,004 KB
testcase_17 AC 30 ms
26,620 KB
testcase_18 AC 34 ms
24,672 KB
testcase_19 AC 36 ms
24,672 KB
testcase_20 AC 39 ms
27,224 KB
testcase_21 AC 39 ms
25,260 KB
testcase_22 AC 44 ms
25,708 KB
testcase_23 AC 62 ms
29,196 KB
testcase_24 AC 73 ms
31,816 KB
testcase_25 AC 88 ms
33,196 KB
testcase_26 AC 87 ms
31,304 KB
testcase_27 AC 73 ms
29,504 KB
testcase_28 AC 79 ms
31,432 KB
testcase_29 AC 87 ms
29,384 KB
testcase_30 AC 86 ms
29,300 KB
testcase_31 AC 82 ms
30,944 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.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++)
            {
                if (sa != kamo[i] - kamo[i + 1])
                {
                    flg = false;
                    break;
                }
                else if(sa==0)
                {
                    flg = false;
                    break;
                }
            }
            if(flg==true)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }

    }
}
0