結果

問題 No.817 Coin donation
ユーザー c-yanc-yan
提出日時 2021-01-18 03:14:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,720 KB
最終ジャッジ日時 2024-05-07 16:17:16
合計ジャッジ時間 3,928 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
11,520 KB
testcase_06 AC 79 ms
13,896 KB
testcase_07 AC 101 ms
14,284 KB
testcase_08 AC 334 ms
25,940 KB
testcase_09 AC 109 ms
14,796 KB
testcase_10 AC 488 ms
35,640 KB
testcase_11 AC 492 ms
35,592 KB
testcase_12 AC 479 ms
35,720 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N, K = map(int, readline().split())

d = {}
for _ in range(N):
    A, B = map(int, readline().split())
    d.setdefault(A, 0)
    d[A] += 1
    d.setdefault(B + 1, 0)
    d[B + 1] -= 1

skeys = sorted(d)
for i in range(len(skeys) - 1):
    d[skeys[i + 1]] += d[skeys[i]]

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