結果
問題 | No.817 Coin donation |
ユーザー | 👑 obakyan |
提出日時 | 2019-09-17 14:17:16 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 10:31:45 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 12 ms
5,376 KB |
testcase_07 | AC | 14 ms
5,376 KB |
testcase_08 | AC | 54 ms
5,376 KB |
testcase_09 | AC | 18 ms
5,376 KB |
testcase_10 | AC | 79 ms
5,376 KB |
testcase_11 | AC | 74 ms
5,376 KB |
testcase_12 | AC | 76 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
local mfl = math.floor local n, k = io.read("*n", "*n") local a, b ={}, {} for i = 1, n do a[i], b[i] = io.read("*n", "*n") end local function solve(x) local cnt = 0 for i = 1, n do if b[i] <= x then cnt = cnt + b[i] - a[i] + 1 elseif a[i] <= x then cnt = cnt + x - a[i] + 1 end end if cnt <= k - 1 then return false else return true end end local min, max = 0, 1000000000 while 1 < max - min do local mid = mfl((max + min) / 2) if solve(mid) then max = mid else min = mid end end print(max)