結果

問題 No.152 貯金箱の消失
ユーザー mkawa2mkawa2
提出日時 2020-01-02 08:51:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 851 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 67,344 KB
最終ジャッジ日時 2024-05-02 06:13:05
合計ジャッジ時間 1,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n, l = MI()
    xwt = [LI() for _ in range(n)]
    time = 0
    pos = 0
    for x, w, t in xwt:
        time += x - pos
        if time // t % 2 or (time + w - 1) // t % 2:
            time = (time // t + 1) * t
            if time // t % 2: time += t
        time += w
        pos = x + w
    time += l - pos
    print(time)

main()
0