結果

問題 No.343 手抜き工事のプロ
ユーザー code-devocode-devo
提出日時 2016-02-13 02:39:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-07 20:47:20
合計ジャッジ時間 4,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 87 ms
12,416 KB
testcase_09 AC 86 ms
12,288 KB
testcase_10 AC 83 ms
12,288 KB
testcase_11 AC 84 ms
12,160 KB
testcase_12 AC 85 ms
12,160 KB
testcase_13 AC 98 ms
12,672 KB
testcase_14 AC 88 ms
12,416 KB
testcase_15 AC 88 ms
12,160 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 87 ms
12,160 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 88 ms
12,288 KB
testcase_20 AC 97 ms
12,672 KB
testcase_21 AC 113 ms
14,464 KB
testcase_22 AC 128 ms
15,488 KB
testcase_23 AC 142 ms
17,536 KB
testcase_24 AC 170 ms
18,560 KB
testcase_25 AC 185 ms
19,968 KB
testcase_26 AC 183 ms
20,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.to_i

xs = $stdin.read.split.map(&:to_i).reverse + [0]

begin
  ans = 0
  sum = 0
  cnt = 0
  for i in 0...xs.size do
    if i > 0 then
      raise "-1" if (xs[i-1] - xs[i]).abs >= L

      center = sum / cnt.to_f #重心
      ok = true
      ok &&= xs[i-1] < center && center < xs[i-1] + L
      ok &&= xs[i] < center && center < xs[i] + L
      ans += 1 unless ok
    end

    sum += xs[i] + L / 2.0
    cnt += 1
  end

  puts ans
rescue
  puts $!
end
0