結果

問題 No.817 Coin donation
ユーザー maspymaspy
提出日時 2020-02-06 12:23:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,416 KB
最終ジャッジ日時 2024-09-25 06:42:21
合計ジャッジ時間 10,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
44,208 KB
testcase_01 AC 506 ms
44,080 KB
testcase_02 AC 508 ms
44,212 KB
testcase_03 AC 510 ms
43,960 KB
testcase_04 AC 517 ms
44,464 KB
testcase_05 AC 516 ms
44,460 KB
testcase_06 AC 514 ms
44,336 KB
testcase_07 AC 516 ms
44,344 KB
testcase_08 AC 538 ms
45,232 KB
testcase_09 AC 513 ms
44,204 KB
testcase_10 AC 538 ms
47,416 KB
testcase_11 AC 536 ms
47,408 KB
testcase_12 AC 542 ms
47,020 KB
testcase_13 AC 521 ms
44,076 KB
testcase_14 AC 512 ms
44,212 KB
testcase_15 AC 514 ms
44,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

data = np.fromstring(read(), np.int64, sep=' ')

N, K = data[:2]
AB = data[2:]
A = AB[::2]
B = AB[1::2]

def f(x):
    """count coins <= x"""
    return np.maximum(0, 1 + np.minimum(x, B) - A).sum()

left = 0
right = 10 ** 9
while left + 1 < right:
    x = (left + right) // 2
    if f(x) >= K:
        right = x
    else:
        left = x

print(right)
0