結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-20 15:49:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 533 bytes |
コンパイル時間 | 2,295 ms |
コンパイル使用メモリ | 74,480 KB |
実行使用メモリ | 59,692 KB |
最終ジャッジ日時 | 2024-11-21 10:46:28 |
合計ジャッジ時間 | 9,838 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 704 ms
48,952 KB |
testcase_01 | AC | 141 ms
41,292 KB |
testcase_02 | AC | 136 ms
41,384 KB |
testcase_03 | AC | 138 ms
41,516 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 152 ms
41,576 KB |
testcase_11 | AC | 147 ms
41,304 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 578 ms
48,016 KB |
testcase_22 | WA | - |
evil01.txt | AC | 647 ms
48,496 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] x = new int[n]; int ans = 1001001001; for(int i = 0 ; i < n ; i++) x[i] = sc.nextInt(); Arrays.sort(x); for(int i = 0 ; i < n - 1 ; i++) { if(Math.abs(x[i + 1] - x[i]) >= 1) { ans = Math.abs(x[i + 1] - x[i]); } } if(ans == 0 || ans == 1001001001) { System.out.println(0); } else { System.out.println(ans); } } }