結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tamura2004tamura2004
提出日時 2019-10-29 15:54:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-09-14 21:30:39
合計ジャッジ時間 34,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,395 ms
87,040 KB
testcase_01 WA -
testcase_02 AC 582 ms
38,016 KB
testcase_03 AC 1,040 ms
76,544 KB
testcase_04 AC 1,381 ms
86,016 KB
testcase_05 AC 1,405 ms
86,016 KB
testcase_06 AC 1,384 ms
86,016 KB
testcase_07 AC 1,402 ms
86,784 KB
testcase_08 AC 1,398 ms
86,784 KB
testcase_09 AC 1,399 ms
86,784 KB
testcase_10 AC 1,258 ms
82,688 KB
testcase_11 AC 1,347 ms
85,760 KB
testcase_12 AC 1,208 ms
82,688 KB
testcase_13 AC 1,290 ms
83,328 KB
testcase_14 AC 1,342 ms
86,016 KB
testcase_15 AC 1,213 ms
82,304 KB
testcase_16 AC 1,406 ms
86,016 KB
testcase_17 AC 1,408 ms
86,144 KB
testcase_18 AC 1,394 ms
86,016 KB
testcase_19 AC 1,403 ms
86,656 KB
testcase_20 AC 1,398 ms
86,784 KB
testcase_21 AC 1,412 ms
86,656 KB
testcase_22 AC 1,280 ms
82,688 KB
testcase_23 AC 1,351 ms
85,760 KB
testcase_24 WA -
testcase_25 AC 115 ms
13,696 KB
testcase_26 AC 97 ms
12,416 KB
testcase_27 AC 93 ms
12,160 KB
testcase_28 AC 297 ms
29,056 KB
testcase_29 AC 191 ms
20,352 KB
testcase_30 AC 115 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.map(&:to_i)
K = gets.to_i

DIG = 10**8

def query(n) # 1/10**9単位、棒の長さ
    L.map{|l| l * DIG / n }.inject(:+) < K
end

puts (1..10**18).bsearch{|n| query(n)}.to_f / DIG
0