結果

問題 No.817 Coin donation
ユーザー H3PO4H3PO4
提出日時 2021-02-12 09:03:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-07-19 03:02:49
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 38 ms
10,880 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 101 ms
12,928 KB
testcase_08 AC 341 ms
19,968 KB
testcase_09 AC 120 ms
13,184 KB
testcase_10 AC 487 ms
24,064 KB
testcase_11 AC 547 ms
23,936 KB
testcase_12 AC 483 ms
24,064 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def cnt(x):
    res = 0
    for a, b in AB:
        if a <= x:
            res += min(b, x) - a + 1
    return res


# bisect
l, r = 0, 10 ** 9 + 1
while r - l > 1:
    m = (r + l) // 2
    if cnt(m) < K:
        l = m
    else:
        r = m
print(r)
0