結果

問題 No.180 美しいWhitespace (2)
ユーザー ぴろずぴろず
提出日時 2015-03-08 15:30:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 896 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 56,880 KB
最終ジャッジ日時 2024-06-24 15:55:48
合計ジャッジ時間 10,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,900 KB
testcase_01 AC 129 ms
54,032 KB
testcase_02 AC 136 ms
54,128 KB
testcase_03 AC 139 ms
54,232 KB
testcase_04 AC 152 ms
54,044 KB
testcase_05 AC 173 ms
54,192 KB
testcase_06 AC 189 ms
54,324 KB
testcase_07 AC 195 ms
54,184 KB
testcase_08 AC 198 ms
54,616 KB
testcase_09 AC 213 ms
56,508 KB
testcase_10 AC 215 ms
56,720 KB
testcase_11 AC 214 ms
56,472 KB
testcase_12 AC 216 ms
56,652 KB
testcase_13 AC 220 ms
56,748 KB
testcase_14 AC 220 ms
56,608 KB
testcase_15 AC 219 ms
56,544 KB
testcase_16 AC 217 ms
56,872 KB
testcase_17 AC 213 ms
56,692 KB
testcase_18 AC 217 ms
56,404 KB
testcase_19 AC 215 ms
56,692 KB
testcase_20 AC 136 ms
53,720 KB
testcase_21 AC 135 ms
54,152 KB
testcase_22 AC 131 ms
54,084 KB
testcase_23 AC 133 ms
53,980 KB
testcase_24 AC 133 ms
54,188 KB
testcase_25 AC 131 ms
54,228 KB
testcase_26 AC 135 ms
54,124 KB
testcase_27 AC 131 ms
54,140 KB
testcase_28 AC 117 ms
52,808 KB
testcase_29 AC 133 ms
53,800 KB
testcase_30 AC 213 ms
56,616 KB
testcase_31 AC 213 ms
56,548 KB
testcase_32 AC 214 ms
56,588 KB
testcase_33 AC 212 ms
56,704 KB
testcase_34 AC 217 ms
56,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package beautifulws;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
		}
		System.out.println(solve(n,a,b));
	}

	public static long solve(int n,int[] a,int[] b) {
		long left = 1;
		long right = 1_000_000_010;
		while(left + 1 < right) {
			long x = (left + right) >> 1;
			if (f(x-1,n,a,b) > f(x,n,a,b)) {
				left = x;
			}else{
				right = x;
			}
		}
		return left;
	}

	public static long f(long x,int n,int[] a,int[] b) {
		if (x <= 0) {
			return Long.MAX_VALUE;
		}
		long max = Long.MIN_VALUE;
		long min = Long.MAX_VALUE;
		for(int i=0;i<n;i++) {
			long h = a[i] + b[i] * x;
			max = Math.max(h, max);
			min = Math.min(h, min);
		}
		return max - min;
	}
}
0