結果

問題 No.817 Coin donation
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-25 22:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 81,204 KB
最終ジャッジ日時 2024-10-14 13:45:22
合計ジャッジ時間 3,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 43 ms
57,088 KB
testcase_03 AC 44 ms
58,112 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 70 ms
70,272 KB
testcase_06 AC 87 ms
76,692 KB
testcase_07 AC 86 ms
76,600 KB
testcase_08 AC 137 ms
79,876 KB
testcase_09 AC 90 ms
76,828 KB
testcase_10 AC 164 ms
81,188 KB
testcase_11 AC 163 ms
81,204 KB
testcase_12 AC 165 ms
80,896 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
AB = []
for i in range(n):
    a, b = map(int, input().split())
    AB.append((a, b))

def is_ok(x):
    cnt = 0
    for a, b in AB:
        if x < a:
            continue
        elif a <= x <= b:
            cnt += x-a+1
        else:
            cnt += b-a+1
    if cnt >= k:
        return True
    else:
        return False

ng = 0
ok = 10**9+1
while ng+1<ok:
    c = (ng+ok)//2
    if is_ok(c):
        ok = c
    else:
        ng = c
print(ok)
0