結果

問題 No.180 美しいWhitespace (2)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-07 08:41:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 1,357 bytes
コンパイル時間 4,092 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 44,388 KB
最終ジャッジ日時 2024-07-04 03:34:13
合計ジャッジ時間 9,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,152 KB
testcase_01 AC 112 ms
41,124 KB
testcase_02 AC 109 ms
41,020 KB
testcase_03 AC 110 ms
41,344 KB
testcase_04 AC 135 ms
42,040 KB
testcase_05 AC 136 ms
42,024 KB
testcase_06 AC 157 ms
41,988 KB
testcase_07 AC 168 ms
42,592 KB
testcase_08 AC 179 ms
42,568 KB
testcase_09 AC 192 ms
43,656 KB
testcase_10 AC 193 ms
44,388 KB
testcase_11 AC 186 ms
43,976 KB
testcase_12 AC 203 ms
43,736 KB
testcase_13 AC 200 ms
43,412 KB
testcase_14 AC 207 ms
43,568 KB
testcase_15 AC 193 ms
43,140 KB
testcase_16 AC 198 ms
43,448 KB
testcase_17 AC 194 ms
43,612 KB
testcase_18 AC 193 ms
43,348 KB
testcase_19 AC 188 ms
43,440 KB
testcase_20 AC 114 ms
41,268 KB
testcase_21 AC 122 ms
41,008 KB
testcase_22 AC 109 ms
40,384 KB
testcase_23 AC 109 ms
40,120 KB
testcase_24 AC 119 ms
41,648 KB
testcase_25 AC 122 ms
41,160 KB
testcase_26 AC 101 ms
40,208 KB
testcase_27 AC 121 ms
41,404 KB
testcase_28 AC 122 ms
41,016 KB
testcase_29 AC 117 ms
41,512 KB
testcase_30 AC 195 ms
43,356 KB
testcase_31 AC 201 ms
43,468 KB
testcase_32 AC 208 ms
43,684 KB
testcase_33 AC 192 ms
43,384 KB
testcase_34 AC 190 ms
43,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No180 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        n = in.nextInt();
        a = new int[n];
        b = new int[n];
        for (int i=0; i<n; i++) {
            a[i] = in.nextInt();
            b[i] = in.nextInt();
        }

        long l = 1, r = 1500000000;
        while (l+1 < r) {
            long x = (l+r)/2;
            if (f(x-1) > f(x)) l = x;
            else r = x;
        }
        out.println(l);
    }

    static int n;
    static int[] a, b;

    static long f(long x) {
        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 y = a[i] + b[i]*x;
            max = max(max,y);
            min = min(min,y);
        }
        return max - min;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0