結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 50 ms
61,824 KB
testcase_04 AC 49 ms
61,568 KB
testcase_05 AC 48 ms
61,696 KB
testcase_06 AC 56 ms
64,000 KB
testcase_07 AC 52 ms
62,848 KB
testcase_08 AC 62 ms
67,072 KB
testcase_09 AC 81 ms
76,160 KB
testcase_10 AC 80 ms
75,648 KB
testcase_11 AC 76 ms
75,612 KB
testcase_12 AC 80 ms
75,640 KB
testcase_13 AC 75 ms
75,776 KB
testcase_14 AC 75 ms
75,520 KB
testcase_15 AC 79 ms
75,644 KB
testcase_16 AC 77 ms
75,392 KB
testcase_17 AC 77 ms
75,776 KB
testcase_18 AC 79 ms
75,392 KB
testcase_19 AC 80 ms
75,520 KB
testcase_20 AC 39 ms
52,864 KB
testcase_21 AC 37 ms
52,864 KB
testcase_22 AC 38 ms
52,864 KB
testcase_23 AC 39 ms
52,480 KB
testcase_24 AC 40 ms
53,120 KB
testcase_25 AC 40 ms
52,864 KB
testcase_26 AC 39 ms
52,480 KB
testcase_27 AC 39 ms
52,864 KB
testcase_28 AC 39 ms
52,736 KB
testcase_29 AC 40 ms
52,736 KB
testcase_30 AC 73 ms
76,032 KB
testcase_31 AC 73 ms
75,776 KB
testcase_32 AC 73 ms
75,680 KB
testcase_33 AC 71 ms
75,648 KB
testcase_34 AC 75 ms
75,264 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