結果

問題 No.817 Coin donation
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-26 02:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-09-22 21:36:51
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 37 ms
52,740 KB
testcase_02 AC 40 ms
58,372 KB
testcase_03 AC 40 ms
58,348 KB
testcase_04 AC 36 ms
52,928 KB
testcase_05 AC 56 ms
68,216 KB
testcase_06 AC 67 ms
77,004 KB
testcase_07 AC 73 ms
77,288 KB
testcase_08 AC 115 ms
83,940 KB
testcase_09 AC 77 ms
78,052 KB
testcase_10 AC 136 ms
86,540 KB
testcase_11 AC 137 ms
86,784 KB
testcase_12 AC 137 ms
86,700 KB
testcase_13 AC 37 ms
53,044 KB
testcase_14 AC 38 ms
52,932 KB
testcase_15 AC 38 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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


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


l = 0
r = 10 ** 9 + 2
while r - l > 1:
    m = (r + l) // 2
    if C(m):
        r = m
    else:
        l = m
print(r)
0