結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | キョウチク |
提出日時 | 2019-09-20 03:51:16 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 267 ms / 5,000 ms |
コード長 | 814 bytes |
コンパイル時間 | 3,537 ms |
コンパイル使用メモリ | 78,028 KB |
実行使用メモリ | 58,940 KB |
最終ジャッジ日時 | 2024-09-13 11:26:06 |
合計ジャッジ時間 | 6,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class Test{ public static void main(String[] args) throws IOException{ BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(buf.readLine()); String[] s = buf.readLine().split(" "); int X[] = new int[N]; X[0]=Integer.parseInt(s[0]); for(int i=1;i<N;i++) { X[i]=Integer.parseInt(s[i]); } Arrays.sort(X); int min=1000001; for(int i=1;i<N;i++) { if(Math.abs(X[i-1]-X[i])<min && X[i-1]!=X[i]) { min=Math.abs(X[i-1]-X[i]); } } if(min==1000001)System.out.println(0); else System.out.println(min); } }