結果
| 問題 |
No.139 交差点
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-02-05 23:17:03 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 5,000 ms |
| コード長 | 454 bytes |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-09-23 06:13:12 |
| 合計ジャッジ時間 | 1,981 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
N, L = map(int, readline().split())
m = map(int, read().split())
XWT = zip(m, m, m)
total_wait = 0
for x, w, t in XWT:
now = total_wait + x
blue = now // (t + t) * (t + t)
if now + w <= blue + t:
# 渡り切れる
pass
else:
total_wait += blue + t + t - now
answer = L + total_wait
print(answer)
maspy