結果

問題 No.139 交差点
ユーザー AEnAEn
提出日時 2022-05-23 15:22:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-09-20 13:06:28
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,884 KB
testcase_01 AC 41 ms
52,092 KB
testcase_02 AC 39 ms
52,724 KB
testcase_03 AC 39 ms
52,504 KB
testcase_04 AC 39 ms
53,840 KB
testcase_05 AC 39 ms
53,940 KB
testcase_06 AC 39 ms
53,072 KB
testcase_07 AC 38 ms
52,908 KB
testcase_08 AC 41 ms
52,508 KB
testcase_09 AC 41 ms
53,920 KB
testcase_10 AC 39 ms
53,588 KB
testcase_11 AC 39 ms
54,032 KB
testcase_12 AC 39 ms
53,296 KB
testcase_13 AC 38 ms
53,296 KB
testcase_14 AC 41 ms
52,724 KB
testcase_15 AC 39 ms
53,016 KB
testcase_16 AC 39 ms
52,324 KB
testcase_17 AC 39 ms
52,592 KB
testcase_18 AC 39 ms
52,748 KB
testcase_19 AC 39 ms
53,020 KB
testcase_20 AC 39 ms
53,712 KB
testcase_21 AC 39 ms
52,924 KB
testcase_22 AC 38 ms
52,400 KB
testcase_23 AC 40 ms
53,148 KB
testcase_24 AC 39 ms
53,484 KB
testcase_25 AC 40 ms
52,588 KB
testcase_26 AC 42 ms
52,772 KB
testcase_27 AC 40 ms
53,072 KB
testcase_28 AC 39 ms
52,984 KB
testcase_29 AC 39 ms
53,280 KB
testcase_30 AC 40 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L = map(int, input().split())
sig = [list(map(int, input().split())) for _ in range(N)]

time = 0
p = 0
for i in range(N):
    x, w, t = sig[i]
    time += (x-p)
    p = x
    a, b = time//t, time%t
    if a%2 == 0 and w-(t-b)<=0:
        time += w
        p += w
    elif a%2==0:
        time += (t-b)+t+w
        p += w
    else:
        time += (t-b)+w
        p += w
time += L-p
print(time)
0