結果

問題 No.817 Coin donation
ユーザー AEnAEn
提出日時 2022-05-23 15:51:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,168 KB
最終ジャッジ日時 2024-09-20 13:07:52
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 72 ms
70,272 KB
testcase_06 AC 102 ms
78,592 KB
testcase_07 AC 111 ms
79,044 KB
testcase_08 AC 259 ms
90,884 KB
testcase_09 AC 119 ms
79,488 KB
testcase_10 AC 360 ms
98,048 KB
testcase_11 AC 347 ms
97,660 KB
testcase_12 AC 344 ms
98,168 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
m = []
for i in range(N):
    A, B = map(int, input().split())
    m.append([1, A])
    m.append([-1, B+1])
m.sort(key = lambda x:x[1])
id, cnt, all_num = 0, 0, 0
s = m[0][1]
while True:
    w, n = m[id]
    if s == n:
        cnt += w
        id += 1
    else:
        if all_num + cnt * (n-s) < K:
            all_num += cnt*(n-s)
            s = n
        else:
            c, d = divmod((K-all_num), cnt)
            print(s+(c-1)+(d>0))
            break
0