結果

問題 No.139 交差点
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-21 17:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 551 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 57,624 KB
最終ジャッジ日時 2024-06-24 00:39:22
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,908 KB
testcase_01 AC 46 ms
56,372 KB
testcase_02 AC 46 ms
55,768 KB
testcase_03 AC 46 ms
56,444 KB
testcase_04 AC 46 ms
56,024 KB
testcase_05 AC 45 ms
55,300 KB
testcase_06 AC 44 ms
56,080 KB
testcase_07 AC 44 ms
57,068 KB
testcase_08 AC 47 ms
56,496 KB
testcase_09 AC 44 ms
57,624 KB
testcase_10 AC 46 ms
55,620 KB
testcase_11 AC 45 ms
55,752 KB
testcase_12 AC 45 ms
55,816 KB
testcase_13 AC 44 ms
56,152 KB
testcase_14 AC 44 ms
56,812 KB
testcase_15 AC 47 ms
56,856 KB
testcase_16 AC 47 ms
55,796 KB
testcase_17 AC 47 ms
56,628 KB
testcase_18 AC 47 ms
56,504 KB
testcase_19 AC 46 ms
56,408 KB
testcase_20 AC 45 ms
56,656 KB
testcase_21 AC 43 ms
55,980 KB
testcase_22 AC 44 ms
55,920 KB
testcase_23 AC 45 ms
56,676 KB
testcase_24 AC 44 ms
56,748 KB
testcase_25 AC 45 ms
56,508 KB
testcase_26 AC 45 ms
56,840 KB
testcase_27 AC 45 ms
55,892 KB
testcase_28 AC 45 ms
56,968 KB
testcase_29 AC 45 ms
56,244 KB
testcase_30 AC 44 ms
56,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,L = map(int,input().split())
XWT = [tuple(map(int,input().split())) for _ in range(N)]
now = 0
time = 0
for x,w,T in XWT:
    time += x-now
    now = x
    if time//T%2==0:
        if (time+w-1)//T==time//T:
            now = x+w
            time += w
        else:
            now = x+w
            time = w + T*(time//T + 2)
    else:
        now = x+w
        time = w + T*(time//T + 1)
print(time + L - now)
0