結果

問題 No.817 Coin donation
ユーザー ああいいああいい
提出日時 2022-01-27 15:07:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-07 11:03:13
合計ジャッジ時間 2,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 41 ms
57,728 KB
testcase_03 AC 43 ms
57,600 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 67 ms
70,272 KB
testcase_06 AC 80 ms
76,348 KB
testcase_07 AC 84 ms
76,744 KB
testcase_08 AC 135 ms
80,000 KB
testcase_09 AC 87 ms
76,928 KB
testcase_10 AC 160 ms
81,152 KB
testcase_11 AC 164 ms
81,280 KB
testcase_12 AC 162 ms
81,280 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())

edge = []
for _ in range(N):
    a,b = map(int,input().split())
    edge.append((a,b))
    
def check(x):
    count = 0
    for a,b in edge:
        if a <= x <= b:
            count += x - a + 1
        elif x > b:
            count += b - a + 1
    return count >= K
start = 0
end = 10 ** 9
while end - start > 1:
    mid = (end + start) // 2
    if check(mid):
        end = mid
    else:
        start = mid
print(end)
0