結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー cielciel
提出日時 2018-06-11 19:32:18
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 85 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 132,540 KB
最終ジャッジ日時 2024-11-08 12:43:59
合計ジャッジ時間 57,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 960 ms
64,376 KB
testcase_03 AC 1,728 ms
100,444 KB
testcase_04 AC 2,364 ms
132,352 KB
testcase_05 AC 2,377 ms
132,540 KB
testcase_06 AC 2,358 ms
132,260 KB
testcase_07 AC 2,439 ms
113,056 KB
testcase_08 AC 2,384 ms
111,468 KB
testcase_09 AC 2,397 ms
111,692 KB
testcase_10 AC 2,131 ms
105,896 KB
testcase_11 AC 2,241 ms
79,920 KB
testcase_12 AC 2,065 ms
102,524 KB
testcase_13 AC 2,218 ms
104,748 KB
testcase_14 AC 2,345 ms
120,184 KB
testcase_15 AC 2,058 ms
113,564 KB
testcase_16 AC 2,363 ms
132,352 KB
testcase_17 AC 2,373 ms
132,164 KB
testcase_18 AC 2,380 ms
132,220 KB
testcase_19 AC 2,423 ms
111,660 KB
testcase_20 AC 2,428 ms
116,656 KB
testcase_21 AC 2,427 ms
111,628 KB
testcase_22 AC 2,164 ms
105,908 KB
testcase_23 AC 2,240 ms
99,940 KB
testcase_24 AC 92 ms
12,416 KB
testcase_25 AC 137 ms
14,336 KB
testcase_26 AC 110 ms
13,056 KB
testcase_27 AC 105 ms
12,672 KB
testcase_28 AC 469 ms
31,088 KB
testcase_29 AC 284 ms
22,608 KB
testcase_30 AC 149 ms
14,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,*l,k=`dd`.split.map &:to_i
p (0..1e9).bsearch{|h|l.map{|e|(e/h).to_i}.reduce(:+)<k}
0