結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | yamax3232 |
提出日時 | 2018-03-14 13:20:18 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 522 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 74,540 KB |
実行使用メモリ | 98,792 KB |
最終ジャッジ日時 | 2024-11-27 10:53:13 |
合計ジャッジ時間 | 35,688 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 103 ms
45,224 KB |
testcase_02 | WA | - |
testcase_03 | AC | 105 ms
40,716 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 148 ms
41,284 KB |
testcase_13 | AC | 120 ms
41,208 KB |
testcase_14 | AC | 181 ms
42,140 KB |
testcase_15 | AC | 145 ms
41,356 KB |
testcase_16 | WA | - |
testcase_17 | AC | 170 ms
42,240 KB |
testcase_18 | AC | 129 ms
41,452 KB |
testcase_19 | AC | 177 ms
41,712 KB |
testcase_20 | AC | 172 ms
42,104 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
evil01.txt | TLE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner kb=new Scanner(System.in); int n=kb.nextInt(); int a[]=new int[n]; for(int i=0;i<n;i++){ a[i]=kb.nextInt(); } int min=60000; int b=0; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i!=j){ b=a[i]-a[j]; }else{ continue; } if(b<0){ b*=-1; } if(b<min){ min=b; } } } System.out.println(min); } }