結果

問題 No.135 とりあえず1次元の問題
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-08-21 02:20:21
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 106,880 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-11 06:53:14
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
32,512 KB
testcase_01 AC 27 ms
19,200 KB
testcase_02 RE -
testcase_03 AC 28 ms
19,328 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 30 ms
19,456 KB
testcase_13 AC 27 ms
19,200 KB
testcase_14 AC 32 ms
19,712 KB
testcase_15 AC 31 ms
19,840 KB
testcase_16 RE -
testcase_17 AC 31 ms
19,840 KB
testcase_18 AC 30 ms
19,456 KB
testcase_19 AC 30 ms
19,712 KB
testcase_20 AC 31 ms
19,840 KB
testcase_21 RE -
testcase_22 RE -
evil01.txt AC 111 ms
32,640 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[] X = Console.ReadLine().Split().Select(i => int.Parse(i))
			.Distinct().OrderBy(i => i).ToArray();
		if (X.Length == 1)
		{
			Console.WriteLine(0);
			return;
		}
		int ans = int.MaxValue;
		for (int i = 1; i < N; i++)
		{
			ans = Math.Min(ans, X[i] - X[i - 1]);
		}
		Console.WriteLine(ans);
	}
}
0