結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-04-24 19:09:10 |
| 言語 | Java (openjdk 26.0.2.1 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 392 ms / 5,000 ms |
| + 481µs | |
| コード長 | 746 bytes |
| 記録 | |
| コンパイル時間 | 1,437 ms |
| コンパイル使用メモリ | 89,904 KB |
| 実行使用メモリ | 52,524 KB |
| 最終ジャッジ日時 | 2026-08-26 04:01:19 |
| 合計ジャッジ時間 | 6,181 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = Integer.parseInt(sc.next());
List<Integer> p = new ArrayList<>();
for (int i = 0; i < N; i++) {
p.add(Integer.parseInt(sc.next()));
}
int d = Integer.MAX_VALUE;
Collections.sort(p);
for(int i = 0; i < N - 1; i++) {
if (Math.abs(p.get(i) - p.get(i+1)) == 0) continue;
if (d > Math.abs(p.get(i) - p.get(i+1))) d = Math.abs(p.get(i) - p.get(i+1));
}
System.out.println((d == Integer.MAX_VALUE)? "0" : d);
}
}