結果

問題 No.406 鴨等間隔の法則
ユーザー _matumo__matumo_
提出日時 2018-08-13 22:36:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-07-07 12:28:48
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
23,296 KB
testcase_01 AC 28 ms
19,200 KB
testcase_02 AC 28 ms
19,200 KB
testcase_03 AC 29 ms
18,944 KB
testcase_04 AC 107 ms
28,672 KB
testcase_05 AC 58 ms
22,600 KB
testcase_06 AC 60 ms
22,656 KB
testcase_07 AC 60 ms
22,804 KB
testcase_08 AC 102 ms
28,672 KB
testcase_09 AC 113 ms
29,440 KB
testcase_10 AC 64 ms
23,096 KB
testcase_11 AC 95 ms
27,264 KB
testcase_12 AC 71 ms
24,064 KB
testcase_13 AC 69 ms
24,304 KB
testcase_14 AC 99 ms
27,648 KB
testcase_15 AC 37 ms
20,224 KB
testcase_16 AC 42 ms
20,224 KB
testcase_17 AC 36 ms
19,968 KB
testcase_18 AC 37 ms
20,096 KB
testcase_19 AC 39 ms
20,736 KB
testcase_20 AC 46 ms
20,864 KB
testcase_21 AC 43 ms
20,864 KB
testcase_22 AC 50 ms
21,888 KB
testcase_23 AC 77 ms
24,516 KB
testcase_24 AC 88 ms
26,752 KB
testcase_25 AC 112 ms
29,440 KB
testcase_26 AC 113 ms
29,696 KB
testcase_27 AC 95 ms
29,696 KB
testcase_28 AC 109 ms
29,440 KB
testcase_29 AC 115 ms
29,824 KB
testcase_30 AC 121 ms
29,440 KB
testcase_31 AC 115 ms
29,184 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;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int nn = int.Parse(Console.ReadLine());
            var va = Console.ReadLine().Split().Select(int.Parse).OrderBy(n=>n).ToArray();
            var vb = va.Skip(1).Select((n, i) => n - va[i]);
            int max = vb.Max();
            int min = vb.Min();
            var ss = max != min ? "NO" : max == 0 ? "NO" : "YES";
            Console.WriteLine(ss);
            Console.ReadLine();
        }
    }
}
0