結果

問題 No.135 とりあえず1次元の問題
ユーザー YamaKasaYamaKasa
提出日時 2018-04-25 01:31:25
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,578 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 51,368 KB
最終ジャッジ日時 2024-06-27 20:51:21
合計ジャッジ時間 9,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 748 ms
50,856 KB
testcase_01 AC 127 ms
41,568 KB
testcase_02 AC 127 ms
41,308 KB
testcase_03 RE -
testcase_04 AC 145 ms
41,660 KB
testcase_05 AC 141 ms
41,740 KB
testcase_06 AC 138 ms
41,776 KB
testcase_07 AC 140 ms
41,512 KB
testcase_08 AC 138 ms
41,728 KB
testcase_09 AC 139 ms
41,148 KB
testcase_10 AC 142 ms
41,544 KB
testcase_11 AC 139 ms
41,544 KB
testcase_12 AC 154 ms
41,392 KB
testcase_13 AC 139 ms
41,912 KB
testcase_14 AC 181 ms
42,484 KB
testcase_15 AC 167 ms
41,796 KB
testcase_16 AC 194 ms
42,492 KB
testcase_17 AC 185 ms
42,252 KB
testcase_18 AC 143 ms
41,460 KB
testcase_19 AC 189 ms
42,224 KB
testcase_20 AC 181 ms
41,796 KB
testcase_21 AC 607 ms
50,724 KB
testcase_22 AC 682 ms
51,368 KB
evil01.txt AC 675 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		//int []X = new int[N];
		ArrayList<Integer> list = new ArrayList<Integer>();
		for(int i = 0; i < N; i++) {
			list.add(scan.nextInt());
		}
		scan.close();
		if(N == 1) {
			System.out.println("0");
			System.exit(0);
		}
		Collections.sort(list);

		int k = 0;
		for(int i = 0; i < N; i++) {
			if(list.get(i) == list.get(i + 1)) {
				k ++;
			}else {
				break;
			}
		}
		if(k == N - 1) {
			System.out.println("0");
			System.exit(0);
		}
		int ans = list.get(k) - list.get(k + 1);
		if(ans < 0) {
			ans = - ans;
		}
		int temp = 0;
		for(int i = k + 1; i < N - 1; i++) {
			int x1 = list.get(i);
			int x2 = list.get(i + 1);
			temp = x1 - x2;
			if(temp != 0) {
				if(temp < 0) {
					temp = - temp;
				}
				if(ans > temp) {
					ans = temp;
				}
			}
		}
//		Arrays.sort(X);
//		int k = 0;
//		for(int i = 0; i < N - 1; i++) {
//			if(X[i] == X[i + 1]) {
//				k ++;
//			}else {
//				break;
//			}
//		}
//		if(k == N - 1) {
//			System.out.println("0");
//			System.exit(0);
//		}
//		int ans = X[k] - X[k + 1];
//		if(ans < 0) {
//			ans = - ans;
//		}
//		int temp = 0;
//		for(int i = k + 1; i < N - 1; i++) {
//			int x1 = X[i];
//			int x2 = X[i + 1];
//			temp = x1 - x2;
//			if(temp != 0) {
//				if(temp < 0) {
//					temp = - temp;
//				}
//				if(ans > temp) {
//					ans = temp;
//				}
//			}
//		}
		System.out.println(ans);
	}
}
0