結果

問題 No.406 鴨等間隔の法則
ユーザー bluemeganebluemegane
提出日時 2018-09-17 20:09:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 112,956 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-07-07 12:30:21
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
24,320 KB
testcase_01 AC 28 ms
19,072 KB
testcase_02 AC 29 ms
19,328 KB
testcase_03 AC 26 ms
19,072 KB
testcase_04 AC 67 ms
31,104 KB
testcase_05 AC 46 ms
23,936 KB
testcase_06 AC 44 ms
24,448 KB
testcase_07 AC 49 ms
24,320 KB
testcase_08 AC 68 ms
31,104 KB
testcase_09 AC 71 ms
31,744 KB
testcase_10 AC 48 ms
24,832 KB
testcase_11 AC 61 ms
29,824 KB
testcase_12 AC 51 ms
25,728 KB
testcase_13 AC 51 ms
24,960 KB
testcase_14 AC 89 ms
30,464 KB
testcase_15 AC 33 ms
19,712 KB
testcase_16 AC 39 ms
20,608 KB
testcase_17 AC 34 ms
19,968 KB
testcase_18 AC 38 ms
20,608 KB
testcase_19 AC 39 ms
20,796 KB
testcase_20 AC 41 ms
20,784 KB
testcase_21 AC 42 ms
20,928 KB
testcase_22 AC 48 ms
22,312 KB
testcase_23 AC 56 ms
25,728 KB
testcase_24 AC 82 ms
29,440 KB
testcase_25 AC 69 ms
32,000 KB
testcase_26 AC 95 ms
32,256 KB
testcase_27 AC 65 ms
28,032 KB
testcase_28 AC 71 ms
32,256 KB
testcase_29 AC 96 ms
32,128 KB
testcase_30 AC 98 ms
32,128 KB
testcase_31 AC 70 ms
31,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = new List<int>(n);
        for (int i = 0; i < n; i++) a.Add(int.Parse(line[i]));
        if (a.Count() != a.Distinct().Count()) { Console.WriteLine("NO"); goto end; }
        a.Sort();
        var t = a[1] - a[0];
        for (int i = 1; i < n-1; i++)
            if (a[i + 1] - a[i] != t) { Console.WriteLine("NO"); goto end; }
        Console.WriteLine("YES");
        end:;
    }
}
0