結果

問題 No.135 とりあえず1次元の問題
ユーザー tsunatama5tsunatama5
提出日時 2015-02-04 20:07:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 4,158 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 57,232 KB
最終ジャッジ日時 2024-06-11 01:49:09
合計ジャッジ時間 9,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
54,568 KB
testcase_01 AC 118 ms
41,020 KB
testcase_02 AC 123 ms
41,108 KB
testcase_03 WA -
testcase_04 AC 117 ms
40,152 KB
testcase_05 AC 125 ms
41,132 KB
testcase_06 AC 127 ms
41,220 KB
testcase_07 AC 124 ms
41,176 KB
testcase_08 AC 125 ms
41,328 KB
testcase_09 AC 128 ms
41,544 KB
testcase_10 AC 128 ms
41,360 KB
testcase_11 AC 113 ms
40,380 KB
testcase_12 AC 140 ms
41,352 KB
testcase_13 AC 128 ms
40,964 KB
testcase_14 AC 156 ms
41,308 KB
testcase_15 AC 137 ms
41,380 KB
testcase_16 AC 144 ms
41,380 KB
testcase_17 AC 146 ms
41,356 KB
testcase_18 AC 124 ms
41,540 KB
testcase_19 AC 156 ms
41,404 KB
testcase_20 AC 138 ms
41,228 KB
testcase_21 AC 416 ms
57,232 KB
testcase_22 AC 477 ms
54,444 KB
evil01.txt AC 481 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package P135;

import java.io.*;
import java.util.Arrays;
import java.util.Scanner;

public class P135 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String n = sc.nextLine();
		int nint = Integer.parseInt(n);
		String l = sc.nextLine();
		String[] lstrs = l.split(" ");

		int lint[] = new int[nint];
		int i = 0;
		int max = nint - 1;
		
		for (i=0;i<=max;i++) {
			lint[i] = Integer.parseInt(lstrs[i]);
		}
		
		int j;
		int temp = 0;
		int ans = 1000000;
		
		Arrays.sort(lint);
		
		for (i=1;i<=max;i++) {
			temp = Math.abs(lint[i-1] - lint[i]);
			if (ans > temp && lint[i] != lint[i-1]) {
				ans = temp;
			}
		}
		System.out.println(ans);
	}
}

0