結果

問題 No.135 とりあえず1次元の問題
ユーザー tsunatama5tsunatama5
提出日時 2015-02-04 20:07:49
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 4,333 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 59,268 KB
最終ジャッジ日時 2025-01-03 05:15:18
合計ジャッジ時間 10,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 409 ms
56,168 KB
testcase_01 AC 106 ms
41,676 KB
testcase_02 AC 108 ms
41,844 KB
testcase_03 WA -
testcase_04 AC 120 ms
41,972 KB
testcase_05 AC 117 ms
41,968 KB
testcase_06 AC 122 ms
41,836 KB
testcase_07 AC 119 ms
41,940 KB
testcase_08 AC 116 ms
41,916 KB
testcase_09 AC 118 ms
41,676 KB
testcase_10 AC 119 ms
41,712 KB
testcase_11 AC 116 ms
41,960 KB
testcase_12 AC 128 ms
42,068 KB
testcase_13 AC 115 ms
41,948 KB
testcase_14 AC 151 ms
42,940 KB
testcase_15 AC 137 ms
42,232 KB
testcase_16 AC 150 ms
42,976 KB
testcase_17 AC 146 ms
42,900 KB
testcase_18 AC 118 ms
42,112 KB
testcase_19 AC 145 ms
42,952 KB
testcase_20 AC 134 ms
42,240 KB
testcase_21 AC 363 ms
59,268 KB
testcase_22 AC 444 ms
56,032 KB
evil01.txt AC 418 ms
56,008 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