結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー maimai
提出日時 2017-12-18 20:32:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,834 ms / 5,000 ms
コード長 123 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-11-08 12:34:11
合計ジャッジ時間 43,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,789 ms
87,168 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 731 ms
36,864 KB
testcase_03 AC 1,318 ms
74,368 KB
testcase_04 AC 1,798 ms
86,016 KB
testcase_05 AC 1,823 ms
86,272 KB
testcase_06 AC 1,800 ms
86,144 KB
testcase_07 AC 1,786 ms
86,912 KB
testcase_08 AC 1,790 ms
86,784 KB
testcase_09 AC 1,815 ms
86,784 KB
testcase_10 AC 1,621 ms
82,816 KB
testcase_11 AC 1,715 ms
86,912 KB
testcase_12 AC 1,569 ms
82,816 KB
testcase_13 AC 1,654 ms
83,456 KB
testcase_14 AC 1,706 ms
86,272 KB
testcase_15 AC 1,540 ms
82,432 KB
testcase_16 AC 1,792 ms
86,272 KB
testcase_17 AC 1,834 ms
86,144 KB
testcase_18 AC 1,813 ms
86,272 KB
testcase_19 AC 1,816 ms
86,912 KB
testcase_20 AC 1,795 ms
86,784 KB
testcase_21 AC 1,791 ms
86,912 KB
testcase_22 AC 1,624 ms
82,944 KB
testcase_23 AC 1,710 ms
86,912 KB
testcase_24 AC 89 ms
12,160 KB
testcase_25 AC 125 ms
13,824 KB
testcase_26 AC 100 ms
12,544 KB
testcase_27 AC 95 ms
12,288 KB
testcase_28 AC 361 ms
28,544 KB
testcase_29 AC 227 ms
19,968 KB
testcase_30 AC 128 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
aa = gets.split.map(&:to_i)
k = gets.to_i

p (1e-10..1e10).bsearch{|x| k > aa.map{|e|(e/x).to_i}.reduce(:+) }
0