結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | kuuso1 |
提出日時 | 2015-01-25 23:26:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 90 ms / 5,000 ms |
コード長 | 996 bytes |
コンパイル時間 | 1,464 ms |
コンパイル使用メモリ | 107,264 KB |
実行使用メモリ | 27,392 KB |
最終ジャッジ日時 | 2025-01-03 03:02:41 |
合計ジャッジ時間 | 3,346 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; using System.Collections.Generic; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ Array.Sort(A); int min=(int)1e9; for(int i=1;i<N;i++){ if(A[i-1]!=A[i]){ min=Math.Min(A[i]-A[i-1],min); } } Console.WriteLine(min==(int)1e9?0:min); } int N; int[] A; public Sol(){ N=ri(); A=ria(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(){return Console.ReadLine().Split(' ');} static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));} static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));} static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));} }