結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | Yatsuku |
提出日時 | 2015-12-11 19:51:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 3,628 ms |
コンパイル使用メモリ | 75,108 KB |
実行使用メモリ | 48,000 KB |
最終ジャッジ日時 | 2024-06-11 04:52:29 |
合計ジャッジ時間 | 8,065 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 534 ms
48,000 KB |
testcase_01 | AC | 116 ms
41,044 KB |
testcase_02 | AC | 116 ms
40,996 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 126 ms
41,092 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 | 167 ms
42,000 KB |
testcase_20 | WA | - |
testcase_21 | AC | 509 ms
47,976 KB |
testcase_22 | AC | 485 ms
47,600 KB |
evil01.txt | AC | 544 ms
48,104 KB |
ソースコード
import java.util.Scanner; class No_135 { public static void main(String args[]) { Scanner stdIn = new Scanner(System.in); int num = stdIn.nextInt(); int vc[] = new int[num]; for (int i = 0; i < num; i++) { vc[i] = stdIn.nextInt(); } System.out.println(vc_Length(vc, num)); } public static int vc_Length(int vc[], int num) { int tmp = 1000000; for (int k = 0; k < num - 1; k++) { if (tmp >= Math.abs(vc[k] - vc[k+1])) { if ( vc[k] == vc[k+1] ) { continue; } tmp = Math.abs(vc[k] - vc[k+1]); } } return tmp; } }