結果

問題 No.406 鴨等間隔の法則
ユーザー keymoonkeymoon
提出日時 2019-02-23 18:38:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 109,896 KB
実行使用メモリ 34,160 KB
最終ジャッジ日時 2024-05-08 04:00:16
合計ジャッジ時間 6,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
30,436 KB
testcase_01 AC 37 ms
25,392 KB
testcase_02 AC 37 ms
25,572 KB
testcase_03 WA -
testcase_04 AC 123 ms
33,664 KB
testcase_05 AC 72 ms
30,140 KB
testcase_06 AC 73 ms
30,140 KB
testcase_07 AC 74 ms
28,404 KB
testcase_08 AC 121 ms
31,708 KB
testcase_09 AC 129 ms
34,160 KB
testcase_10 AC 76 ms
28,396 KB
testcase_11 AC 109 ms
30,784 KB
testcase_12 AC 84 ms
28,660 KB
testcase_13 AC 82 ms
31,128 KB
testcase_14 AC 114 ms
33,320 KB
testcase_15 WA -
testcase_16 AC 46 ms
24,504 KB
testcase_17 AC 44 ms
28,388 KB
testcase_18 AC 46 ms
26,604 KB
testcase_19 AC 47 ms
26,544 KB
testcase_20 AC 50 ms
28,668 KB
testcase_21 AC 53 ms
24,728 KB
testcase_22 AC 60 ms
27,436 KB
testcase_23 AC 87 ms
28,992 KB
testcase_24 AC 105 ms
27,008 KB
testcase_25 AC 133 ms
29,952 KB
testcase_26 AC 133 ms
30,080 KB
testcase_27 WA -
testcase_28 AC 129 ms
30,080 KB
testcase_29 AC 130 ms
29,952 KB
testcase_30 AC 129 ms
29,696 KB
testcase_31 AC 126 ms
29,568 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.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using Int = System.Int64;
using Debug = System.Diagnostics.Debug;

class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(int.Parse).OrderBy(x => x).ToList();
        Console.WriteLine(a.Zip(a.Skip(1), (x, y) => y - x).Distinct().Count() == 1 ? "YES" : "NO"); ;
    }
}
0