結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | abc |
提出日時 | 2016-11-08 02:36:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 666 bytes |
コンパイル時間 | 2,414 ms |
コンパイル使用メモリ | 74,256 KB |
実行使用メモリ | 56,576 KB |
最終ジャッジ日時 | 2024-06-11 07:03:22 |
合計ジャッジ時間 | 7,656 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 520 ms
48,524 KB |
testcase_01 | AC | 110 ms
41,092 KB |
testcase_02 | AC | 106 ms
41,412 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 116 ms
41,244 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 156 ms
41,872 KB |
testcase_20 | WA | - |
testcase_21 | AC | 449 ms
48,008 KB |
testcase_22 | AC | 436 ms
47,308 KB |
evil01.txt | AC | 492 ms
48,456 KB |
ソースコード
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]; for (int i = 0; i < n; i++) { x[i] = sc.nextInt(); } int first = x[0]; //int i = 1; int min = Integer.MAX_VALUE; for (int i = 1; i < n; i++) { int second = x[i]; if (Math.abs(first - second) < min && Math.abs(first - second) != 0) { min = Math.abs(first - second); } first = second; } System.out.println(min); } }