結果

問題 No.180 美しいWhitespace (2)
ユーザー convexineqconvexineq
提出日時 2020-12-13 14:19:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 75,056 KB
最終ジャッジ日時 2024-09-19 23:28:18
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,884 KB
testcase_01 AC 38 ms
52,948 KB
testcase_02 AC 36 ms
52,760 KB
testcase_03 AC 35 ms
53,536 KB
testcase_04 AC 45 ms
62,788 KB
testcase_05 AC 47 ms
63,512 KB
testcase_06 AC 50 ms
64,728 KB
testcase_07 AC 52 ms
66,612 KB
testcase_08 AC 52 ms
66,816 KB
testcase_09 AC 64 ms
73,720 KB
testcase_10 AC 67 ms
73,484 KB
testcase_11 AC 63 ms
73,712 KB
testcase_12 AC 62 ms
73,408 KB
testcase_13 AC 64 ms
73,892 KB
testcase_14 AC 64 ms
73,396 KB
testcase_15 AC 61 ms
75,056 KB
testcase_16 AC 63 ms
73,828 KB
testcase_17 AC 63 ms
74,332 KB
testcase_18 AC 62 ms
73,704 KB
testcase_19 AC 64 ms
74,192 KB
testcase_20 AC 34 ms
52,728 KB
testcase_21 AC 35 ms
53,644 KB
testcase_22 AC 36 ms
52,196 KB
testcase_23 AC 34 ms
53,440 KB
testcase_24 AC 35 ms
52,336 KB
testcase_25 AC 35 ms
52,476 KB
testcase_26 AC 35 ms
53,944 KB
testcase_27 AC 35 ms
53,312 KB
testcase_28 AC 35 ms
53,224 KB
testcase_29 AC 36 ms
53,632 KB
testcase_30 AC 65 ms
73,956 KB
testcase_31 AC 64 ms
74,052 KB
testcase_32 AC 62 ms
74,032 KB
testcase_33 AC 63 ms
72,736 KB
testcase_34 AC 61 ms
72,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get(x):
    return max(a+b*x for a,b in ab) - min(a+b*x for a,b in ab)

n = int(input())
ab = [list(map(int,input().split())) for _ in range(n)]

l = 1
r = 2*10**9
cnt = 0
while r-l > 5:
    d = (r-l)//3
    m1 = l+d
    m2 = l+2*d
    if get(m1) <= get(m2):
        r = m2
    else:
        l = m1
    cnt += 1
    if cnt == 100: break

v = get(l)
c = l
for i in range(l,r):
    gi = get(i)
    if v > gi:
        v = gi
        c = i
print(c)
0