結果

問題 No.817 Coin donation
ユーザー koi_kotyakoi_kotya
提出日時 2019-04-19 22:18:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-09-22 21:07:45
合計ジャッジ時間 5,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 107 ms
12,416 KB
testcase_06 AC 168 ms
12,416 KB
testcase_07 AC 185 ms
12,416 KB
testcase_08 AC 487 ms
13,312 KB
testcase_09 AC 203 ms
12,416 KB
testcase_10 AC 664 ms
13,824 KB
testcase_11 AC 669 ms
13,824 KB
testcase_12 AC 668 ms
13,696 KB
testcase_13 AC 87 ms
12,160 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k = gets.split.map(&:to_i)
a,b = 2.times.map{Array.new(n,0)}
n.times do |i|
    a[i],b[i] = gets.split.map(&:to_i)
end
min = 1
max = 10**15
while max-min > 1
    mid = (min+max)/2
    cnt = 0
    n.times do |i|
        if a[i] <= mid
            cnt += (b[i] < mid ? b[i] : mid)-a[i]+1
        end
    end
    if cnt < k
        min = mid
    else
        max = mid
    end
end
puts max
0