結果

問題 No.817 Coin donation
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-28 13:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 86,604 KB
最終ジャッジ日時 2024-11-17 14:18:05
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,192 KB
testcase_01 AC 39 ms
54,024 KB
testcase_02 AC 43 ms
58,612 KB
testcase_03 AC 44 ms
58,036 KB
testcase_04 AC 39 ms
53,308 KB
testcase_05 AC 84 ms
76,576 KB
testcase_06 AC 93 ms
76,824 KB
testcase_07 AC 100 ms
77,272 KB
testcase_08 AC 162 ms
82,540 KB
testcase_09 AC 104 ms
76,892 KB
testcase_10 AC 197 ms
86,368 KB
testcase_11 AC 198 ms
86,368 KB
testcase_12 AC 195 ms
86,604 KB
testcase_13 AC 38 ms
52,472 KB
testcase_14 AC 39 ms
53,560 KB
testcase_15 AC 38 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def  check(a):
    cnt=0
    for i,j in x:
        if i <= a:
            cnt += min(a,j) - i + 1
    if cnt < k:
        return False
    else:
        return True

ng = 0
ok = 10**9

while ok-ng > 1:
    mid = (ok + ng) // 2
    if check(mid):
        ok = mid
    else:
        ng = mid

print(ok)
0