結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー maimai
提出日時 2017-12-18 20:30:30
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-12-16 00:30:18
合計ジャッジ時間 42,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 716 ms
36,096 KB
testcase_03 AC 1,299 ms
73,216 KB
testcase_04 AC 1,765 ms
86,144 KB
testcase_05 AC 1,761 ms
86,144 KB
testcase_06 AC 1,758 ms
86,272 KB
testcase_07 AC 1,759 ms
86,656 KB
testcase_08 AC 1,758 ms
86,656 KB
testcase_09 AC 1,756 ms
86,784 KB
testcase_10 AC 1,594 ms
82,816 KB
testcase_11 AC 1,683 ms
86,784 KB
testcase_12 AC 1,511 ms
82,688 KB
testcase_13 AC 1,624 ms
83,328 KB
testcase_14 AC 1,677 ms
86,272 KB
testcase_15 AC 1,517 ms
82,432 KB
testcase_16 AC 1,767 ms
86,144 KB
testcase_17 AC 1,778 ms
86,144 KB
testcase_18 AC 1,764 ms
86,144 KB
testcase_19 AC 1,758 ms
86,784 KB
testcase_20 AC 1,764 ms
86,912 KB
testcase_21 AC 1,756 ms
86,784 KB
testcase_22 AC 1,591 ms
82,688 KB
testcase_23 AC 1,682 ms
86,784 KB
testcase_24 WA -
testcase_25 AC 121 ms
13,568 KB
testcase_26 AC 101 ms
12,288 KB
testcase_27 AC 102 ms
12,160 KB
testcase_28 AC 357 ms
28,032 KB
testcase_29 AC 226 ms
19,840 KB
testcase_30 AC 124 ms
13,696 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 (1.0..1e9).bsearch{|x| k > aa.map{|e|(e/x).to_i}.reduce(:+) }
0