結果

問題 No.180 美しいWhitespace (2)
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-20 17:14:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,404 KB
最終ジャッジ日時 2024-05-01 04:41:09
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,312 KB
testcase_01 AC 38 ms
53,496 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 57 ms
62,364 KB
testcase_04 AC 46 ms
62,556 KB
testcase_05 AC 48 ms
62,792 KB
testcase_06 AC 56 ms
64,376 KB
testcase_07 AC 50 ms
62,888 KB
testcase_08 AC 62 ms
67,688 KB
testcase_09 AC 78 ms
75,516 KB
testcase_10 AC 79 ms
76,404 KB
testcase_11 AC 75 ms
75,892 KB
testcase_12 AC 76 ms
76,224 KB
testcase_13 AC 76 ms
76,096 KB
testcase_14 AC 75 ms
75,840 KB
testcase_15 AC 77 ms
75,708 KB
testcase_16 AC 79 ms
75,744 KB
testcase_17 AC 75 ms
75,804 KB
testcase_18 AC 76 ms
75,804 KB
testcase_19 AC 77 ms
75,572 KB
testcase_20 AC 37 ms
53,020 KB
testcase_21 AC 37 ms
53,084 KB
testcase_22 AC 39 ms
53,548 KB
testcase_23 AC 38 ms
54,192 KB
testcase_24 AC 38 ms
54,532 KB
testcase_25 AC 37 ms
52,944 KB
testcase_26 AC 38 ms
53,744 KB
testcase_27 AC 38 ms
53,496 KB
testcase_28 AC 37 ms
53,632 KB
testcase_29 AC 38 ms
54,324 KB
testcase_30 AC 71 ms
75,536 KB
testcase_31 AC 74 ms
75,640 KB
testcase_32 AC 72 ms
75,800 KB
testcase_33 AC 70 ms
75,624 KB
testcase_34 AC 76 ms
75,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())
AB = tuple(tuple(map(int, input().split())) for _ in range(N))


def F(x):
    up = max(a+b*x for a, b in AB)
    dn = min(a+b*x for a, b in AB)
    return up - dn


l = 0
r = 10 ** 18
while r - l > 2:
    ml = (2 * l + r) // 3
    mr = (l + r * 2) // 3
    if ml >= mr:
        break
    if F(ml) <= F(mr):
        r = mr
    else:
        l = ml

print(l+1)
0