結果

問題 No.406 鴨等間隔の法則
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-08-06 18:57:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 112,240 KB
実行使用メモリ 35,868 KB
最終ジャッジ日時 2024-07-07 11:30:13
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
27,724 KB
testcase_01 AC 28 ms
27,112 KB
testcase_02 AC 30 ms
27,380 KB
testcase_03 AC 26 ms
25,332 KB
testcase_04 AC 97 ms
33,264 KB
testcase_05 AC 57 ms
27,500 KB
testcase_06 AC 59 ms
29,452 KB
testcase_07 AC 60 ms
29,508 KB
testcase_08 AC 103 ms
31,056 KB
testcase_09 AC 107 ms
33,756 KB
testcase_10 AC 62 ms
27,620 KB
testcase_11 AC 95 ms
34,344 KB
testcase_12 AC 71 ms
28,520 KB
testcase_13 AC 68 ms
30,744 KB
testcase_14 AC 98 ms
32,736 KB
testcase_15 AC 37 ms
25,952 KB
testcase_16 AC 39 ms
25,904 KB
testcase_17 AC 35 ms
25,904 KB
testcase_18 AC 37 ms
26,344 KB
testcase_19 AC 37 ms
26,472 KB
testcase_20 AC 43 ms
24,116 KB
testcase_21 AC 42 ms
26,472 KB
testcase_22 AC 49 ms
29,292 KB
testcase_23 AC 71 ms
30,428 KB
testcase_24 AC 85 ms
34,100 KB
testcase_25 AC 107 ms
33,916 KB
testcase_26 AC 107 ms
31,932 KB
testcase_27 AC 90 ms
32,064 KB
testcase_28 AC 102 ms
33,688 KB
testcase_29 AC 108 ms
35,868 KB
testcase_30 AC 107 ms
33,764 KB
testcase_31 AC 108 ms
31,556 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.Linq;

public class Program
{
	public static void Main()
	{
		int n = int.Parse(Console.ReadLine());
		int[] ducks = Console.ReadLine().Split().Select(i => int.Parse(i))
			.OrderBy(i => i).ToArray();
		int tolerance = ducks[1] - ducks[0];
		if (tolerance == 0)
		{
			Console.WriteLine("NO");
			return;
		}
		for (int i = 2; i < n; i++)
		{
			if (ducks[i] - ducks[i - 1] != tolerance)
			{
				Console.WriteLine("NO");
				return;
			}
		}
		Console.WriteLine("YES");
	}
}
0