結果

問題 No.406 鴨等間隔の法則
ユーザー bluemeganebluemegane
提出日時 2018-09-17 20:00:31
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 460 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 112,520 KB
実行使用メモリ 33,792 KB
最終ジャッジ日時 2024-07-18 07:47:43
合計ジャッジ時間 3,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
26,076 KB
testcase_01 RE -
testcase_02 AC 25 ms
25,952 KB
testcase_03 RE -
testcase_04 AC 78 ms
28,696 KB
testcase_05 AC 44 ms
26,252 KB
testcase_06 AC 46 ms
26,288 KB
testcase_07 AC 45 ms
26,316 KB
testcase_08 AC 75 ms
30,564 KB
testcase_09 AC 79 ms
31,228 KB
testcase_10 AC 48 ms
26,572 KB
testcase_11 AC 69 ms
30,164 KB
testcase_12 AC 54 ms
26,260 KB
testcase_13 AC 51 ms
25,144 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 30 ms
24,776 KB
testcase_17 AC 30 ms
26,364 KB
testcase_18 AC 32 ms
24,940 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 33 ms
27,148 KB
testcase_22 RE -
testcase_23 AC 54 ms
31,252 KB
testcase_24 RE -
testcase_25 AC 82 ms
31,264 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 73 ms
31,324 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 79 ms
29,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

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