結果

問題 No.180 美しいWhitespace (2)
ユーザー 37zigen37zigen
提出日時 2020-04-02 05:34:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 1,007 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 43,624 KB
最終ジャッジ日時 2024-06-27 21:03:41
合計ジャッジ時間 9,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,324 KB
testcase_01 AC 128 ms
41,032 KB
testcase_02 AC 111 ms
41,276 KB
testcase_03 AC 133 ms
41,256 KB
testcase_04 AC 146 ms
41,120 KB
testcase_05 AC 164 ms
41,660 KB
testcase_06 AC 170 ms
41,748 KB
testcase_07 AC 188 ms
42,544 KB
testcase_08 AC 190 ms
42,540 KB
testcase_09 AC 210 ms
43,580 KB
testcase_10 AC 203 ms
43,572 KB
testcase_11 AC 213 ms
42,912 KB
testcase_12 AC 208 ms
43,392 KB
testcase_13 AC 213 ms
43,604 KB
testcase_14 AC 215 ms
43,340 KB
testcase_15 AC 206 ms
43,580 KB
testcase_16 AC 213 ms
43,400 KB
testcase_17 AC 207 ms
43,544 KB
testcase_18 AC 212 ms
43,280 KB
testcase_19 AC 205 ms
43,324 KB
testcase_20 AC 130 ms
40,972 KB
testcase_21 AC 127 ms
41,576 KB
testcase_22 AC 125 ms
41,272 KB
testcase_23 AC 128 ms
41,228 KB
testcase_24 AC 130 ms
41,296 KB
testcase_25 AC 131 ms
41,316 KB
testcase_26 AC 121 ms
39,828 KB
testcase_27 AC 130 ms
41,140 KB
testcase_28 AC 130 ms
40,884 KB
testcase_29 AC 127 ms
41,212 KB
testcase_30 AC 204 ms
43,060 KB
testcase_31 AC 217 ms
43,572 KB
testcase_32 AC 211 ms
43,540 KB
testcase_33 AC 210 ms
43,384 KB
testcase_34 AC 212 ms
43,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	long f(long[] A,long[] B,long x) {
		int n=A.length;
		long INF=Long.MAX_VALUE;
		long ret=INF,max=-INF,min=INF;
		for(int i=0;i<n;++i) {
			max=Math.max(max, A[i]+B[i]*x);
			min=Math.min(min, A[i]+B[i]*x);
		}
		return max-min;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long[] A=new long[N];
		long[] B=new long[N];
		for(int i=0;i<N;++i) {
			A[i]=sc.nextLong();
			B[i]=sc.nextLong();
		}
		//f(left)>f(left+1)
		//f(right)<=f(right+1)
		long left=0,right=(long)1e9;
		while(right-left>1) {
			long middle=(right+left)/2;
			if(f(A,B,middle)<=f(A,B,middle+1)) {
				right=middle;
			}else {
				left=middle;
			}
		}
		System.out.println(right);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0