結果

問題 No.817 Coin donation
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-04-20 02:00:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,331 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-09-24 18:00:02
合計ジャッジ時間 6,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 66 ms
11,264 KB
testcase_06 AC 196 ms
13,184 KB
testcase_07 AC 243 ms
13,952 KB
testcase_08 AC 867 ms
24,192 KB
testcase_09 AC 279 ms
14,592 KB
testcase_10 AC 1,331 ms
30,336 KB
testcase_11 AC 1,227 ms
30,592 KB
testcase_12 AC 1,317 ms
30,592 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
AB  = [list(map(int, input().split())) for _ in range(N)]

ok = 10**9
ng = 0
mid = (ok+ng)//2
while abs(ok-ng) > 1:
    tmpCount = 0
    for a,b in AB:
        n = b-a+1
        if b < mid:
            tmpCount += n
        elif mid < a:
            pass
        elif a <= mid <= b:
            tmpCount += mid - a + 1
        
    if tmpCount >= K:
        ok = mid
    else:
        ng = mid
    mid = (ok+ng)//2
print(ok)
0