結果
| 問題 |
No.135 とりあえず1次元の問題
|
| コンテスト | |
| ユーザー |
wowilson
|
| 提出日時 | 2016-10-08 19:44:13 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 83 ms / 5,000 ms |
| コード長 | 741 bytes |
| コンパイル時間 | 2,300 ms |
| コンパイル使用メモリ | 105,216 KB |
| 実行使用メモリ | 28,544 KB |
| 最終ジャッジ日時 | 2024-06-11 07:01:06 |
| 合計ジャッジ時間 | 3,952 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
namespace Yukicoder
{
class Program
{
static void Main(string[] args)
{
int N = int.Parse(Console.ReadLine());
List<int> ary = new List<int>();
ary.AddRange(Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray());
ary.Sort();
int dif = 0;
for (int i = 1; i < ary.Count; i++)
{
int tmp = ary[i] - ary[i - 1];
if (tmp == 0)
{
continue;
}
dif = dif == 0 ? tmp : dif > tmp ? tmp : dif;
}
Console.WriteLine(dif);
}
}
}
wowilson