結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 99 ms
12,032 KB
testcase_02 AC 750 ms
36,096 KB
testcase_03 AC 1,337 ms
73,216 KB
testcase_04 AC 1,813 ms
86,016 KB
testcase_05 AC 1,818 ms
86,016 KB
testcase_06 AC 1,802 ms
86,144 KB
testcase_07 AC 1,797 ms
86,784 KB
testcase_08 AC 1,809 ms
86,656 KB
testcase_09 AC 1,790 ms
86,656 KB
testcase_10 AC 1,657 ms
82,816 KB
testcase_11 AC 1,733 ms
86,656 KB
testcase_12 AC 1,558 ms
82,688 KB
testcase_13 AC 1,676 ms
83,328 KB
testcase_14 AC 1,717 ms
86,016 KB
testcase_15 AC 1,559 ms
82,432 KB
testcase_16 AC 1,823 ms
86,016 KB
testcase_17 AC 1,810 ms
86,144 KB
testcase_18 AC 1,821 ms
86,016 KB
testcase_19 AC 1,817 ms
86,784 KB
testcase_20 AC 1,811 ms
86,784 KB
testcase_21 AC 1,806 ms
86,784 KB
testcase_22 AC 1,636 ms
82,816 KB
testcase_23 AC 1,725 ms
86,784 KB
testcase_24 WA -
testcase_25 AC 146 ms
13,824 KB
testcase_26 AC 112 ms
12,288 KB
testcase_27 AC 107 ms
12,288 KB
testcase_28 AC 375 ms
28,288 KB
testcase_29 AC 242 ms
20,096 KB
testcase_30 AC 140 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