結果

問題 No.817 Coin donation
ユーザー H20H20
提出日時 2021-09-22 11:21:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-07-04 23:38:09
合計ジャッジ時間 2,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 86 ms
74,112 KB
testcase_06 AC 110 ms
76,800 KB
testcase_07 AC 114 ms
76,800 KB
testcase_08 AC 187 ms
84,224 KB
testcase_09 AC 120 ms
77,440 KB
testcase_10 AC 229 ms
89,088 KB
testcase_11 AC 216 ms
89,088 KB
testcase_12 AC 229 ms
88,832 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
52,224 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

print(meguru_bisect(0,10**9+100))
0