#include <bits/stdc++.h>
#pragma GCC target ("avx2,fma")
#pragma GCC optimize ("Ofast")
#pragma GCC optimize ("unroll-loops")
#define int long long
#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);i++)
#define ROF(i,r,l) for(int i=(r);i>=(l);i--)
using namespace std;
ll inf=1000000000000000007;
const int mod=1000000007;
int mod1=998244353;
#ifdef LOCAL
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int x,d,h,m;
cin>>x>>d>>h>>m;
d-=22;
if(x==5)
{
if(d==5) cout<<59*60-(h-12)*60-m<<endl;
else if(d==6) cout<<47*60-h*60-m<<endl;
else
{
if(h<2) cout<<23*60-h*60-m<<endl;
else cout<<24*60-h*60-m<<endl;
}
}
else if(d==x) cout<<36*60-(h-12)*60-m<<endl;
else cout<<36*60-12*60-h*60-m<<endl;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #include <bits/stdc++.h> #pragma GCC target ("avx2,fma") #pragma GCC optimize ("Ofast") #pragma GCC optimize ("unroll-loops") #define int long long #define ll long long #define ld long double #define endl '\n' #define st first #define nd second #define pb push_back #define sz(x) (int)(x).size() #define all(x) (x).begin(), (x).end() #define FOR(i,l,r) for(int i=(l);i<=(r);i++) #define ROF(i,r,l) for(int i=(r);i>=(l);i--) using namespace std; ll inf=1000000000000000007; const int mod=1000000007; int mod1=998244353; #ifdef LOCAL auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";} auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";} #define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X) #else #define debug(...){} #endif signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int x,d,h,m; cin>>x>>d>>h>>m; d-=22; if(x==5) { if(d==5) cout<<59*60-(h-12)*60-m<<endl; else if(d==6) cout<<47*60-h*60-m<<endl; else { if(h<2) cout<<23*60-h*60-m<<endl; else cout<<24*60-h*60-m<<endl; } } else if(d==x) cout<<36*60-(h-12)*60-m<<endl; else cout<<36*60-12*60-h*60-m<<endl; return 0; } |
English