結果

問題 No.817 Coin donation
ユーザー 👑 rin204rin204
提出日時 2022-02-21 00:37:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-06-29 10:59:14
合計ジャッジ時間 2,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,352 KB
testcase_01 AC 31 ms
51,968 KB
testcase_02 AC 34 ms
57,984 KB
testcase_03 AC 37 ms
59,008 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 60 ms
72,320 KB
testcase_06 AC 75 ms
76,888 KB
testcase_07 AC 75 ms
77,280 KB
testcase_08 AC 119 ms
82,304 KB
testcase_09 AC 86 ms
76,924 KB
testcase_10 AC 146 ms
86,144 KB
testcase_11 AC 146 ms
86,016 KB
testcase_12 AC 135 ms
86,028 KB
testcase_13 AC 33 ms
51,968 KB
testcase_14 AC 33 ms
51,840 KB
testcase_15 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def ok(x):
    ret = 0
    for a, b in ab:
        if x < a:
            continue
        else:
            ret += min(b, x) - a + 1
            if ret >= k:
                return True
    return False

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