結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | jimano |
提出日時 | 2018-01-18 22:53:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 3,529 ms |
コンパイル使用メモリ | 75,232 KB |
実行使用メモリ | 50,364 KB |
最終ジャッジ日時 | 2024-06-06 15:41:09 |
合計ジャッジ時間 | 6,488 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 218 ms
49,184 KB |
testcase_01 | AC | 55 ms
36,492 KB |
testcase_02 | AC | 54 ms
37,028 KB |
testcase_03 | AC | 53 ms
37,140 KB |
testcase_04 | WA | - |
testcase_05 | AC | 54 ms
36,892 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 | 56 ms
36,852 KB |
testcase_20 | WA | - |
testcase_21 | AC | 222 ms
48,812 KB |
testcase_22 | AC | 219 ms
48,896 KB |
evil01.txt | AC | 212 ms
48,660 KB |
ソースコード
package me.yukicoder.lv1; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class No0135 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { int N = Integer.parseInt(br.readLine()); String[] str = br.readLine().split(" "); int[] x = new int[N]; int min = 0;// Integer.MAX_VALUEとかにして状態を持つようにしてやるとよい? int tmp = 0; boolean boo = false; for (int i = 0; i < N; i++) { x[i] = Integer.parseInt(str[i]); } for (int i = 0; i < N - 1; i++) { int abs = Math.abs(x[i] - x[i + 1]); if (abs != 0) { if (!boo) { boo = true; min = abs; } min = Math.min(min, abs); } } System.out.println(min); } catch (IOException e) { e.printStackTrace(); } } }