結果

問題 No.135 とりあえず1次元の問題
ユーザー 練習生練習生
提出日時 2015-08-19 14:15:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 733 ms / 5,000 ms
コード長 732 bytes
コンパイル時間 3,984 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 48,744 KB
最終ジャッジ日時 2024-06-11 03:06:59
合計ジャッジ時間 11,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
48,744 KB
testcase_01 AC 140 ms
41,164 KB
testcase_02 AC 145 ms
41,460 KB
testcase_03 AC 138 ms
41,440 KB
testcase_04 AC 156 ms
41,588 KB
testcase_05 AC 152 ms
41,292 KB
testcase_06 AC 156 ms
41,552 KB
testcase_07 AC 156 ms
41,552 KB
testcase_08 AC 152 ms
41,680 KB
testcase_09 AC 151 ms
41,724 KB
testcase_10 AC 152 ms
41,552 KB
testcase_11 AC 149 ms
41,588 KB
testcase_12 AC 181 ms
41,804 KB
testcase_13 AC 148 ms
41,424 KB
testcase_14 AC 213 ms
42,528 KB
testcase_15 AC 174 ms
41,728 KB
testcase_16 AC 207 ms
42,580 KB
testcase_17 AC 218 ms
42,428 KB
testcase_18 AC 157 ms
41,472 KB
testcase_19 AC 212 ms
42,520 KB
testcase_20 AC 211 ms
42,332 KB
testcase_21 AC 596 ms
48,100 KB
testcase_22 AC 711 ms
48,596 KB
evil01.txt AC 667 ms
48,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Copy_2_of_No135 implements Runnable {
	public static void main(String[] args) {
		new Thread(null, new Copy_2_of_No135(), "", 512 * 1024 * 1024).start();
		}
		public void run() {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int[] x = new int[n];
			// 全ての地点を配列に格納
			for(int i = 0; i < n; i++){
				x[i] = sc.nextInt();
			}
			sc.close();
			// 地点を昇順にソート
			Arrays.sort(x);
			int min = 9999999;
			for(int i = 0; i < (n - 1); i++){
				if((x[i] != x[i + 1]) && (x[i + 1] - x[i]) < min){
					min = x[i + 1] - x[i];
				}
			}
			if(min == 9999999){
				min = 0;
			}

			System.out.println(min);
		}	
}
0