結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-26 14:59:31 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 788 bytes |
| コンパイル時間 | 919 ms |
| コンパイル使用メモリ | 106,752 KB |
| 実行使用メモリ | 28,416 KB |
| 最終ジャッジ日時 | 2024-07-07 11:57:28 |
| 合計ジャッジ時間 | 4,134 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / 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;
using System.Collections.Generic;
class Program
{
static void Main(string[] args)
{
int n = int.Parse(Console.ReadLine());
int[] x = Console.ReadLine().Split().Select(v => int.Parse(v)).ToArray();
Array.Sort(x);
if (Judge(x))
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
Console.Read();
}
static bool Judge(int[] x)
{
int n = x[1] - x[0];
if (n == 0)
{
return false;
}
for (int i = 2; i < x.Length - 1; i++)
{
if (x[i + 1] - x[i] != n)
{
return false;
}
}
return true;
}
}