結果

問題 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  
実行時間 576 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,620 KB
最終ジャッジ日時 2024-11-30 11:25:03
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 41 ms
12,416 KB
testcase_06 AC 81 ms
18,500 KB
testcase_07 AC 96 ms
19,544 KB
testcase_08 AC 350 ms
43,208 KB
testcase_09 AC 111 ms
20,736 KB
testcase_10 AC 562 ms
64,616 KB
testcase_11 AC 567 ms
64,620 KB
testcase_12 AC 576 ms
64,616 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 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