結果

問題 No.180 美しいWhitespace (2)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-07 08:40:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,357 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 78,020 KB
実行使用メモリ 59,252 KB
最終ジャッジ日時 2024-07-04 03:34:01
合計ジャッジ時間 9,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,260 KB
testcase_01 AC 127 ms
41,432 KB
testcase_02 AC 119 ms
41,216 KB
testcase_03 AC 123 ms
41,464 KB
testcase_04 AC 136 ms
41,828 KB
testcase_05 AC 143 ms
42,092 KB
testcase_06 AC 151 ms
42,156 KB
testcase_07 AC 172 ms
42,196 KB
testcase_08 AC 173 ms
42,488 KB
testcase_09 AC 194 ms
43,436 KB
testcase_10 AC 189 ms
43,756 KB
testcase_11 AC 185 ms
43,456 KB
testcase_12 AC 187 ms
43,572 KB
testcase_13 AC 195 ms
43,272 KB
testcase_14 AC 199 ms
43,316 KB
testcase_15 AC 199 ms
43,972 KB
testcase_16 AC 186 ms
43,672 KB
testcase_17 AC 195 ms
43,464 KB
testcase_18 AC 184 ms
43,372 KB
testcase_19 AC 186 ms
43,484 KB
testcase_20 AC 124 ms
41,324 KB
testcase_21 WA -
testcase_22 AC 111 ms
41,380 KB
testcase_23 AC 104 ms
40,180 KB
testcase_24 AC 106 ms
40,404 KB
testcase_25 AC 111 ms
41,356 KB
testcase_26 AC 113 ms
41,448 KB
testcase_27 AC 115 ms
41,196 KB
testcase_28 AC 113 ms
41,116 KB
testcase_29 AC 105 ms
40,672 KB
testcase_30 AC 203 ms
43,564 KB
testcase_31 AC 201 ms
43,548 KB
testcase_32 AC 209 ms
43,932 KB
testcase_33 WA -
testcase_34 AC 190 ms
43,688 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 = 1000000000;
        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