結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-27 16:39:15 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| コード長 | 570 bytes |
| コンパイル時間 | 863 ms |
| コンパイル使用メモリ | 109,968 KB |
| 実行使用メモリ | 28,288 KB |
| 最終ジャッジ日時 | 2024-07-07 12:10:34 |
| 合計ジャッジ時間 | 4,048 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
using System.Linq;
class Program {
static void Main() {
int n = int.Parse(Console.ReadLine());
int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
Array.Sort(x);
string ans = "YES";
int k = x[1] - x[0];
if (k == 0) {
ans = "NO";
} else {
for (int i = 1; i < n - 1; i++) {
if (x[i + 1] - x[i] != k) {
ans = "NO";
break;
}
}
}
Console.WriteLine(ans);
}
}