結果

問題 No.406 鴨等間隔の法則
ユーザー funakoshifunakoshi
提出日時 2019-06-27 17:48:20
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,810 bytes
コンパイル時間 3,754 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-06-28 04:00:47
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
26,936 KB
testcase_01 AC 26 ms
17,792 KB
testcase_02 AC 25 ms
17,920 KB
testcase_03 AC 26 ms
17,792 KB
testcase_04 AC 84 ms
26,496 KB
testcase_05 AC 50 ms
21,196 KB
testcase_06 AC 51 ms
21,340 KB
testcase_07 AC 51 ms
21,248 KB
testcase_08 AC 84 ms
26,624 KB
testcase_09 AC 90 ms
27,392 KB
testcase_10 AC 55 ms
21,680 KB
testcase_11 AC 76 ms
25,472 KB
testcase_12 AC 60 ms
22,272 KB
testcase_13 AC 58 ms
22,784 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];
            int[] sa = new int[kamo.Length - 1];
            bool flg = true;
            for (int i = 0; i < input2.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 i=0;i<sa.Length-1;i++)
            {
                int sa1 = sa[i];
                int sa2 = sa[i + 1];
                if(sa1!=sa2)
                {
                    flg = false;
                    break;
                }
            }
            for (int i = 0; i < kamo.Length - 1; i++)
            {
                int tmp = kamo[i];
                for (int j = i + 1; j < kamo.Length; j++)
                {
                    int temp = kamo[j];
                    
                    if (temp == tmp)
                    {
                        flg = false;
                        break;
                    }
                   
                }
                if(flg==false)
                {
                    break;
                }
            }
            if(flg==true)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }

    }
}
0