結果

問題 No.135 とりあえず1次元の問題
ユーザー omi_UTomi_UT
提出日時 2017-03-10 21:22:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 648 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 59,404 KB
最終ジャッジ日時 2024-06-24 07:54:57
合計ジャッジ時間 9,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
59,328 KB
testcase_01 AC 137 ms
54,244 KB
testcase_02 AC 137 ms
54,296 KB
testcase_03 AC 141 ms
54,304 KB
testcase_04 AC 146 ms
54,376 KB
testcase_05 AC 147 ms
54,180 KB
testcase_06 AC 147 ms
54,000 KB
testcase_07 AC 148 ms
54,368 KB
testcase_08 AC 147 ms
54,184 KB
testcase_09 AC 145 ms
54,052 KB
testcase_10 AC 148 ms
54,292 KB
testcase_11 AC 147 ms
54,328 KB
testcase_12 AC 168 ms
56,436 KB
testcase_13 AC 153 ms
54,088 KB
testcase_14 AC 202 ms
56,588 KB
testcase_15 AC 167 ms
56,024 KB
testcase_16 AC 201 ms
56,844 KB
testcase_17 AC 205 ms
56,900 KB
testcase_18 AC 150 ms
54,164 KB
testcase_19 AC 201 ms
56,632 KB
testcase_20 AC 194 ms
56,592 KB
testcase_21 AC 563 ms
59,164 KB
testcase_22 AC 602 ms
59,404 KB
evil01.txt AC 568 ms
59,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Scanner;

public class Main {
	public static void main(String[] args)throws IOException {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] x = new boolean[1000001];

		for (int i=0;i<n;i++){
			x[sc.nextInt()] = true;
		}

		int maxi = 1000001;

		for (int i=0;i<1000000;i++){
			if(x[i]){
				for(int j=i+1;j<Math.min(1000001,i+maxi);j++){
					if(x[j]){
						maxi = j-i;
					}
				}
			}
		}

		if(maxi == 1000001){ maxi = 0; }
		System.out.println(maxi);
	}
}
0