#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(0)->sync_with_stdio(0);
int x, d, h, m;
cin >> x >> d >> h >> m;
int endDay = x == 5 ? 29 : x + 23;
int days = endDay - d;
int time = days * 24 * 60 + (24 - h - 1) * 60 + 60 - m;
if(x == 5 && (d < 29 || h < 2))time -= 60;
cout << time << endl;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <bits/stdc++.h> using namespace std; int main(){ cin.tie(0)->sync_with_stdio(0); int x, d, h, m; cin >> x >> d >> h >> m; int endDay = x == 5 ? 29 : x + 23; int days = endDay - d; int time = days * 24 * 60 + (24 - h - 1) * 60 + 60 - m; if(x == 5 && (d < 29 || h < 2))time -= 60; cout << time << endl; return 0; } |
English