結果

問題 No.817 Coin donation
ユーザー convexineqconvexineq
提出日時 2021-03-23 05:20:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 86,056 KB
最終ジャッジ日時 2024-05-03 17:30:29
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 42 ms
57,472 KB
testcase_03 AC 43 ms
57,984 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 71 ms
73,216 KB
testcase_06 AC 92 ms
77,184 KB
testcase_07 AC 96 ms
77,276 KB
testcase_08 AC 163 ms
82,432 KB
testcase_09 AC 101 ms
76,908 KB
testcase_10 AC 202 ms
85,888 KB
testcase_11 AC 201 ms
86,044 KB
testcase_12 AC 202 ms
86,056 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(x): #x円以下あつめてk枚未満か?
    r = 0
    for a,b in ab:
        if a <= x <= b:
            r += x-a+1
        elif x > b:
            r += b-a+1
    return r < k


n,k = map(int,input().split())
ab = [list(map(int,input().split())) for _ in range(n)]

ok = 0
ng = 10**9+1
while ng-ok > 1:
    mid = (ok+ng)//2
    if check(mid):
        ok = mid
    else:
        ng = mid
print(ng)
0