結果

問題 No.817 Coin donation
ユーザー H20H20
提出日時 2021-09-22 11:26:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 89,068 KB
最終ジャッジ日時 2024-07-04 23:42:26
合計ジャッジ時間 2,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 41 ms
57,728 KB
testcase_03 AC 41 ms
58,368 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 75 ms
74,496 KB
testcase_06 AC 95 ms
77,056 KB
testcase_07 AC 100 ms
77,056 KB
testcase_08 AC 176 ms
84,352 KB
testcase_09 AC 106 ms
77,312 KB
testcase_10 AC 214 ms
89,036 KB
testcase_11 AC 204 ms
89,068 KB
testcase_12 AC 210 ms
88,960 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 35 ms
51,584 KB
testcase_15 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
AB = []
for i in range(N):
    AB.append(list(map(int,input().split())))

def is_ok(v):
    temp = 0
    for a,b in AB:
        temp+=max(0,min(v,b)-a+1)
    return temp>=K


def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
ok = meguru_bisect(0,10**9+100)
ans = 0
for a,b in AB:
    if a<=ok<=b:
        ans = max(ans,min(b,ok))

print(ans)
0