結果
| 問題 |
No.139 交差点
|
| コンテスト | |
| ユーザー |
compass19
|
| 提出日時 | 2017-01-04 20:33:38 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 487 bytes |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-12-17 19:39:19 |
| 合計ジャッジ時間 | 2,307 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
n, l = map(int, input().split())
now_time = 0
pre_pos = 0
for _ in range(n):
x, w, t = map(int, input().split())
# 次の信号まで移動
now_time += x - pre_pos
key = now_time // t
# 赤信号
if key % 2:
# 信号待ち
now_time = (key + 1) * t
# 青信号(途中で赤変更)
elif key * t + t < now_time + w:
now_time = (key + 2) * t
# 横断
now_time += w
pre_pos = x + w
now_time += l - pre_pos
print(now_time)
compass19