結果

問題 No.817 Coin donation
ユーザー yuruhiyayuruhiya
提出日時 2020-05-03 20:19:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-22 18:24:07
合計ジャッジ時間 6,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 108 ms
12,544 KB
testcase_06 AC 178 ms
13,184 KB
testcase_07 AC 204 ms
13,568 KB
testcase_08 AC 557 ms
18,048 KB
testcase_09 AC 225 ms
13,440 KB
testcase_10 AC 773 ms
20,352 KB
testcase_11 AC 777 ms
20,480 KB
testcase_12 AC 759 ms
20,224 KB
testcase_13 AC 88 ms
12,288 KB
testcase_14 AC 88 ms
12,032 KB
testcase_15 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, k = gets.split.map &:to_i
a, b = n.times.map {gets.split.map &:to_i}.transpose
puts (1..10**9).bsearch {|num|
    n.times.sum {|i| [0, (b[i] < num ? b[i] : num) - a[i] + 1].max } >= k
}
0