結果

問題 No.817 Coin donation
ユーザー roarisroaris
提出日時 2019-08-14 21:34:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,752 KB
最終ジャッジ日時 2024-09-19 14:34:44
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
52,276 KB
testcase_02 AC 37 ms
57,728 KB
testcase_03 AC 37 ms
57,856 KB
testcase_04 AC 37 ms
57,216 KB
testcase_05 AC 63 ms
71,424 KB
testcase_06 AC 84 ms
76,928 KB
testcase_07 AC 92 ms
76,928 KB
testcase_08 AC 153 ms
81,336 KB
testcase_09 AC 95 ms
76,928 KB
testcase_10 AC 196 ms
84,752 KB
testcase_11 AC 199 ms
84,608 KB
testcase_12 AC 193 ms
84,224 KB
testcase_13 AC 34 ms
51,840 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 34 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def judge(x):
    cnt = 0
    
    for Ai, Bi in AB:
        if Ai <= x <= Bi:
            cnt += x - Ai + 1
        elif Bi < x:
            cnt += Bi - Ai + 1
    
    if cnt >= K:
        return True
    else:
        return False
    
def binary_search():
    left, right = 0, 10 ** 18
    
    while left <= right:
        mid = (left + right) // 2
        
        if judge(mid):
            right = mid - 1
        else:
            left = mid + 1
    
    return left

N, K = map(int, input().split())
AB = [tuple(map(int, input().split())) for _ in range(N)]
ans = binary_search()
print(ans)
0