結果

問題 No.135 とりあえず1次元の問題
ユーザー FVRChanFVRChan
提出日時 2017-09-24 16:20:07
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 457 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 124,268 KB
最終ジャッジ日時 2024-11-14 07:12:11
合計ジャッジ時間 36,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 137 ms
124,268 KB
testcase_02 AC 140 ms
123,516 KB
testcase_03 WA -
testcase_04 AC 148 ms
54,036 KB
testcase_05 AC 148 ms
54,024 KB
testcase_06 AC 158 ms
54,108 KB
testcase_07 AC 146 ms
54,452 KB
testcase_08 AC 145 ms
54,568 KB
testcase_09 AC 147 ms
54,360 KB
testcase_10 AC 144 ms
54,112 KB
testcase_11 AC 148 ms
54,076 KB
testcase_12 AC 170 ms
54,204 KB
testcase_13 AC 147 ms
54,144 KB
testcase_14 AC 216 ms
54,576 KB
testcase_15 AC 173 ms
54,012 KB
testcase_16 AC 224 ms
54,960 KB
testcase_17 AC 217 ms
55,080 KB
testcase_18 AC 155 ms
54,264 KB
testcase_19 AC 216 ms
54,364 KB
testcase_20 AC 207 ms
54,132 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int n=Integer.parseInt(sc.nextLine());
		int are[]=new int[n];
		int min=999999999;
		for(int i=0;i<n;i++)are[i]=sc.nextInt();
		for(int i=0;i<are.length;i++){
			for(int j=i+1;j<are.length;j++){
				if(are[i] != are[j]){
					min=Math.min(min,Math.abs(are[i]-are[j]));
				}
			}
		}
		System.out.println(min);
	}
}
0