結果
問題 | No.817 Coin donation |
ユーザー | nebukuro09 |
提出日時 | 2019-04-19 21:34:21 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 98 ms / 2,000 ms |
コード長 | 810 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 119,420 KB |
実行使用メモリ | 13,072 KB |
最終ジャッジ日時 | 2024-06-22 00:48:53 |
合計ジャッジ時間 | 1,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 14 ms
6,940 KB |
testcase_07 | AC | 19 ms
6,940 KB |
testcase_08 | AC | 71 ms
11,544 KB |
testcase_09 | AC | 21 ms
6,944 KB |
testcase_10 | AC | 98 ms
12,116 KB |
testcase_11 | AC | 94 ms
12,912 KB |
testcase_12 | AC | 94 ms
13,072 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.string; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto K = s[1].to!long; auto AB = N.iota.map!(_ => readln.split.map!(to!long).array).array; bool check(long x) { long tmp = 0; foreach (ab; AB) { if (ab[1] <= x) { tmp += ab[1] - ab[0] + 1; } else if (ab[0] <= x) { tmp += x - ab[0] + 1; } } return tmp >= K; } long hi = 10L^^9; long lo = 0; while (hi - lo > 1) { long mid = (hi + lo) / 2; (check(mid) ? hi : lo) = mid; } hi.writeln; }