結果

問題 No.139 交差点
コンテスト
ユーザー fine
提出日時 2016-03-28 11:32:00
言語 Ruby
(4.0.2)
コンパイル:
ruby -w -c _filename_
実行:
ruby _filename_
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 276 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 143 ms
コンパイル使用メモリ 9,088 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2026-04-18 16:00:34
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #
raw source code

ans = now = 0
n, l = gets.split.map(&:to_i)
n.times{
    x, w, t = gets.split.map(&:to_i)
    ans += x - now
    now = x
    tmp = ans / (2 * t) * 2 * t
    if tmp + t < ans + w
        ans = tmp + 2 * t + w
    else
        ans += w
    end
    now += w
    }
p ans + l - now
0