結果

問題 No.139 交差点
ユーザー takuktakuk
提出日時 2015-02-01 19:32:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-23 05:26:33
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 92 ms
12,416 KB
testcase_04 AC 106 ms
15,360 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 115 ms
15,872 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 107 ms
15,488 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 104 ms
13,952 KB
testcase_11 AC 114 ms
15,872 KB
testcase_12 AC 107 ms
14,848 KB
testcase_13 AC 88 ms
12,288 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 88 ms
12,416 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 114 ms
15,616 KB
testcase_19 AC 93 ms
12,800 KB
testcase_20 AC 98 ms
13,568 KB
testcase_21 AC 137 ms
18,688 KB
testcase_22 AC 137 ms
18,560 KB
testcase_23 AC 140 ms
18,688 KB
testcase_24 AC 88 ms
12,160 KB
testcase_25 AC 90 ms
12,416 KB
testcase_26 AC 93 ms
12,288 KB
testcase_27 AC 94 ms
12,416 KB
testcase_28 AC 90 ms
12,416 KB
testcase_29 AC 93 ms
12,288 KB
testcase_30 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, l = gets.split.map(&:to_i)
x = n.times.map{gets.split.map(&:to_i)}
r = Array.new(l,0)
w = Hash.new
x.each do |xx|
    xx[1].times do |i|
        r[xx[0] + i] = xx[2]
        w[xx[0] + i] = xx[1] - i
    end
end
wait = 0
i = 0
while i < l
    if r[i] == 0
        i += 1
        next
    end
    if ((i + wait) / r[i]) % 2 == 1 #red
        #puts "NOW RED"
        wait += r[i] - (i + wait) % r[i]
    elsif r[i] - (i + wait) % r[i] < w[i] #green but not enough time
        #puts "NOW GREEN BUT NOT ENOUGH TIME"
        wait += 2 * r[i] - (i + wait) % r[i]
    end
    i += 1
end
puts l + wait
0