結果

問題 No.180 美しいWhitespace (2)
ユーザー titiatitia
提出日時 2022-05-08 01:22:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-07 07:18:49
合計ジャッジ時間 8,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 46 ms
10,624 KB
testcase_05 AC 61 ms
10,624 KB
testcase_06 AC 74 ms
10,496 KB
testcase_07 AC 86 ms
10,496 KB
testcase_08 AC 101 ms
10,496 KB
testcase_09 AC 179 ms
10,752 KB
testcase_10 AC 179 ms
10,624 KB
testcase_11 AC 179 ms
10,752 KB
testcase_12 AC 187 ms
10,624 KB
testcase_13 AC 179 ms
10,752 KB
testcase_14 AC 182 ms
10,752 KB
testcase_15 AC 179 ms
10,624 KB
testcase_16 AC 179 ms
10,624 KB
testcase_17 AC 184 ms
10,624 KB
testcase_18 AC 182 ms
10,624 KB
testcase_19 AC 176 ms
10,752 KB
testcase_20 AC 28 ms
10,496 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,496 KB
testcase_23 AC 28 ms
10,496 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 28 ms
10,496 KB
testcase_26 AC 29 ms
10,496 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 175 ms
10,752 KB
testcase_31 AC 172 ms
10,752 KB
testcase_32 AC 174 ms
10,624 KB
testcase_33 AC 182 ms
10,752 KB
testcase_34 AC 180 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
AB=[tuple(map(int,input().split())) for i in range(N)]

def calc(x):
    MIN=1<<64
    MAX=-1<<64

    for a,b in AB:
        MIN=min(a+x*b,MIN)
        MAX=max(a+x*b,MAX)

    return MAX-MIN

MIN=1
MAX=10**18

while MAX>MIN+10:
    x=MIN+(MAX-MIN)//3
    y=MIN+(MAX-MIN)//3*2

    if calc(x)>calc(y):
        MIN=x
    else:
        MAX=y
        

SCORE=1<<64

for i in range(MIN,MAX+1):
    if calc(i)<SCORE:
        ANS=i
        SCORE=calc(i)

print(ANS)
0