結果

問題 No.817 Coin donation
ユーザー hedwig100hedwig100
提出日時 2020-04-21 21:48:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-10-09 10:52:21
合計ジャッジ時間 3,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 44 ms
11,264 KB
testcase_06 AC 89 ms
12,544 KB
testcase_07 AC 101 ms
13,184 KB
testcase_08 AC 325 ms
20,096 KB
testcase_09 AC 116 ms
13,440 KB
testcase_10 AC 477 ms
24,320 KB
testcase_11 AC 476 ms
24,320 KB
testcase_12 AC 468 ms
24,192 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 ** 9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  math import factorial

def f(x,C):
        S = 0
        t = 0
        for a,b in C:
            if x < a:
                continue
            if b < x:
                S += b - a + 1
            elif a <= x <= b:
                S += x - a
                t += 1
        return  S,t

def main():
    n,k = map(int,input().split())
    C = [tuple(map(int,input().split())) for _ in range(n)]

    l = 0
    r = 10 ** 9 + 1
    while r - l > 1:
        mid = (r + l)//2
        S,t = f(mid,C)
        if S < k <= S + t:
            break
        if S >= k:
            r = mid
        else:
            l = mid 
    print(mid)
if __name__ == '__main__':
    main() 
0