結果

問題 No.817 Coin donation
ユーザー rlangevinrlangevin
提出日時 2023-03-10 08:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-09-18 03:13:30
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,132 KB
testcase_01 AC 40 ms
53,132 KB
testcase_02 AC 44 ms
58,912 KB
testcase_03 AC 41 ms
58,580 KB
testcase_04 AC 39 ms
52,804 KB
testcase_05 AC 53 ms
65,648 KB
testcase_06 AC 60 ms
70,956 KB
testcase_07 AC 62 ms
74,052 KB
testcase_08 AC 92 ms
76,732 KB
testcase_09 AC 64 ms
73,280 KB
testcase_10 AC 105 ms
77,624 KB
testcase_11 AC 104 ms
76,936 KB
testcase_12 AC 103 ms
77,760 KB
testcase_13 AC 40 ms
52,248 KB
testcase_14 AC 39 ms
52,528 KB
testcase_15 AC 39 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def check(m):
    cnt = 0
    for i in range(N):
        if m > B[i]:
            cnt += max(0, B[i] - A[i] + 1)
        else:
            cnt += max(0, m - A[i])
    return cnt < K

N, K = map(int, readline().split())
A, B = [0] * N, [0] * N
for i in range(N):
    A[i], B[i] = map(int, readline().split())

yes = 0
no = 10 ** 10
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0