結果

問題 No.817 Coin donation
ユーザー alexara1123alexara1123
提出日時 2019-09-22 19:01:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 661 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-19 03:42:08
合計ジャッジ時間 4,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 47 ms
59,776 KB
testcase_02 AC 46 ms
59,904 KB
testcase_03 AC 48 ms
60,800 KB
testcase_04 AC 47 ms
59,904 KB
testcase_05 AC 102 ms
76,416 KB
testcase_06 AC 170 ms
77,952 KB
testcase_07 AC 185 ms
78,208 KB
testcase_08 AC 481 ms
83,456 KB
testcase_09 AC 177 ms
78,592 KB
testcase_10 AC 655 ms
86,656 KB
testcase_11 AC 654 ms
86,528 KB
testcase_12 AC 661 ms
86,656 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 43 ms
52,480 KB
testcase_15 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def main():
    n, k = map(int, input().split())
    ab = [list(map(int, input().split())) for i in range(n)]

    def ok(v):

        s = 0
        for i in range(n):
            # 境界より大きい硬貨はカウントしない
            s += max(0, min(v, ab[i][1]) - ab[i][0] + 1)

        if s >= k:
            return True
        else:
            return False

    l, r = 0, 10**18
    for i in range(200):
        m = (l + r) / 2
        if ok(m):
            r = m
        else:
            l = m
    print(math.ceil(m))


if __name__ == '__main__':
    main()
0