#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define aLL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define F(i,j,k) fill(i[0],i[0]+j*j,k) #define P(p) cout<<(p)< vi; typedef vector vl; typedef vector vd; typedef pair pii; typedef pair pll; typedef pair, int> pp; typedef long long ll; int dx[] = { 0, 1, 0, -1 }; int dy[] = { -1, 0, 1, 0 }; int sttoi(std::string str) { int ret; std::stringstream ss; ss << str; ss >> ret; return ret; } bool sort_greater(const pair &a, const pair &b) { return a.second > b.second; } int gcd(int a, int b){ if (b > a)swap(a, b);if (b == 0)return a;else{return gcd(b, a%b);} } void solve() { int n, l; cin >> n >> l; int time = 0,pos = 0; for (int i = 0; i < n; i++){ int x, w, t; cin >> x >> w >> t; while (pos < x){ time++; pos++; } if ((time / t) % 2 == 0){ if ((t - (time-(time/t)*t)%t) - w < 0){ time += 2 * t - (time - (time / t)*t) % t; } } else{ time += t - (time - (time / t)*t) % t; } time += w; pos += w; } time += l - pos; P(time); } int main() { solve(); return 0; }