結果

問題 No.817 Coin donation
ユーザー c-yanc-yan
提出日時 2021-01-18 03:30:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 64,748 KB
最終ジャッジ日時 2024-05-07 17:00:37
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 37 ms
12,160 KB
testcase_06 AC 76 ms
18,376 KB
testcase_07 AC 89 ms
19,676 KB
testcase_08 AC 312 ms
43,208 KB
testcase_09 AC 102 ms
20,612 KB
testcase_10 AC 460 ms
64,492 KB
testcase_11 AC 485 ms
64,620 KB
testcase_12 AC 483 ms
64,748 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 25 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from itertools import accumulate

readline = stdin.readline

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

p = set()
for a, b in AB:
    p.add(a)
    p.add(b + 1)
inv = sorted(p)
fwd = {}
for i in range(len(inv)):
    fwd[inv[i]] = i

t = [0] * len(inv)
for a, b in AB:
    t[fwd[a]] += 1
    t[fwd[b + 1]] -= 1
t = list(accumulate(t))

c = 0
for i in range(len(t)):
    x = c + t[i] * (inv[i + 1] - inv[i])
    if x < K:
        c = x
        continue
    print(inv[i] + (K - c - 1) // t[i])
    break
0