結果

問題 No.817 Coin donation
ユーザー tanon710tanon710
提出日時 2019-07-27 00:15:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-07-02 10:12:11
合計ジャッジ時間 3,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 46 ms
11,264 KB
testcase_06 AC 100 ms
13,312 KB
testcase_07 AC 119 ms
13,824 KB
testcase_08 AC 394 ms
24,448 KB
testcase_09 AC 134 ms
14,592 KB
testcase_10 AC 576 ms
30,464 KB
testcase_11 AC 585 ms
30,592 KB
testcase_12 AC 572 ms
30,464 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cond(arr,m):
    ret=0
    for v1,v2 in arr:
        if v1<=m<=v2:
            ret+=(m-v1+1)
        elif v2<m:
            ret+=(v2-v1+1)
    return ret

n,k=map(int,input().split())
arr=[list(map(int,input().split())) for _ in range(n)]
l=0
r=10**9+1
while r-l!=1:
    m=(r+l)//2
    if cond(arr,m)>=k:
        r=m
    else:
        l=m
print(r)
0