結果
問題 | No.406 鴨等間隔の法則 |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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:; } }