#include <bits/stdc++.h>
#define ll long long
#define llu long long unsigned
#define ld long double
#define fr(i,n) for(int i=0;i<n;i++)
#define watch(x) cout<<(#x)<<"=="<<(x)<<endl
#define ft first
#define sc second
#define mp make_pair
#define pb push_back
#define vi vector<int>
#define pii pair<int,int>
#define P 1000000007llu
#define N 200005
#define LC 262144
using namespace std;
int getchar_pos_int() {
int n=0, c=getchar();
while('0'<=c&&c<='9') {n=n*10+c-'0'; c=getchar();}
return n;
}
// TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
int main() {
int x=getchar_pos_int(),d=getchar_pos_int(),h=getchar_pos_int(),m=getchar_pos_int();
if (x<5) printf("%d\n",((23+x-d)*24+24-h)*60-m);
else if (d<29||h<3) printf("%d\n",((29-d)*24-1+24-h)*60-m);
else printf("%d\n",(24-h)*60-m);
// TIP See CLion help at <a href="https://www.jetbrains.com/help/clion/">jetbrains.com/help/clion/</a>. Also, you can try interactive lessons for CLion by selecting 'Help | Learn IDE Features' from the main menu.
}
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 | #include <bits/stdc++.h> #define ll long long #define llu long long unsigned #define ld long double #define fr(i,n) for(int i=0;i<n;i++) #define watch(x) cout<<(#x)<<"=="<<(x)<<endl #define ft first #define sc second #define mp make_pair #define pb push_back #define vi vector<int> #define pii pair<int,int> #define P 1000000007llu #define N 200005 #define LC 262144 using namespace std; int getchar_pos_int() { int n=0, c=getchar(); while('0'<=c&&c<='9') {n=n*10+c-'0'; c=getchar();} return n; } // TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. int main() { int x=getchar_pos_int(),d=getchar_pos_int(),h=getchar_pos_int(),m=getchar_pos_int(); if (x<5) printf("%d\n",((23+x-d)*24+24-h)*60-m); else if (d<29||h<3) printf("%d\n",((29-d)*24-1+24-h)*60-m); else printf("%d\n",(24-h)*60-m); // TIP See CLion help at <a href="https://www.jetbrains.com/help/clion/">jetbrains.com/help/clion/</a>. Also, you can try interactive lessons for CLion by selecting 'Help | Learn IDE Features' from the main menu. } |
English