結果

問題 No.1478 Simple Sugoroku
ユーザー simansiman
提出日時 2022-02-10 00:01:29
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-06-25 04:33:38
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 85 ms
12,544 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 83 ms
12,544 KB
testcase_04 AC 83 ms
12,416 KB
testcase_05 WA -
testcase_06 AC 85 ms
12,416 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 86 ms
12,416 KB
testcase_10 AC 86 ms
12,416 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 157 ms
21,760 KB
testcase_30 AC 157 ms
21,632 KB
testcase_31 AC 158 ms
21,632 KB
testcase_32 AC 157 ms
21,632 KB
testcase_33 AC 138 ms
19,072 KB
testcase_34 AC 136 ms
18,944 KB
testcase_35 AC 142 ms
18,816 KB
testcase_36 AC 137 ms
19,200 KB
testcase_37 AC 131 ms
18,688 KB
testcase_38 AC 130 ms
18,560 KB
testcase_39 AC 131 ms
18,688 KB
testcase_40 AC 130 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)

ans = N - 1

wp = B.select { |b| B.last <= b + M }
r = Rational(M, wp.size)
val = 0.0

wp.each do |b|
  cnt = B.first + r + (N - b) - 1
  val += cnt
end

puts [ans, Rational(val, wp.size).to_f.round(12)].min
0