結果

問題 No.135 とりあえず1次元の問題
ユーザー tsunatama5tsunatama5
提出日時 2015-02-04 20:14:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 482 ms / 5,000 ms
コード長 852 bytes
コンパイル時間 3,752 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 57,516 KB
最終ジャッジ日時 2024-06-11 01:49:40
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
54,456 KB
testcase_01 AC 126 ms
41,148 KB
testcase_02 AC 124 ms
41,520 KB
testcase_03 AC 123 ms
41,180 KB
testcase_04 AC 126 ms
41,188 KB
testcase_05 AC 128 ms
41,512 KB
testcase_06 AC 127 ms
41,352 KB
testcase_07 AC 129 ms
41,260 KB
testcase_08 AC 127 ms
41,348 KB
testcase_09 AC 128 ms
41,348 KB
testcase_10 AC 126 ms
41,324 KB
testcase_11 AC 128 ms
41,532 KB
testcase_12 AC 137 ms
41,320 KB
testcase_13 AC 124 ms
41,072 KB
testcase_14 AC 159 ms
41,520 KB
testcase_15 AC 135 ms
41,108 KB
testcase_16 AC 141 ms
41,744 KB
testcase_17 AC 142 ms
40,776 KB
testcase_18 AC 119 ms
40,880 KB
testcase_19 AC 142 ms
41,452 KB
testcase_20 AC 138 ms
41,456 KB
testcase_21 AC 376 ms
57,516 KB
testcase_22 AC 482 ms
54,080 KB
evil01.txt WA -
権限があれば一括ダウンロードができます

ソースコード

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

0