CF-816A
转换一下数字再对比即可
AC代码:
1 #include<bits/stdc++.h> 2 using namespace std; 3 4 char t; 5 int n,k; 6 int ans=0; 7 8 int check(int n,int k){ 9 if(k%10*10+k/10==n){ 10 cout<<ans<<endl; 11 return 1; 12 } 13 return 0; 14 } 15 16 int main(){ 17 ios::sync_with_stdio(false); 18 cin>>n>>t>>k; 19 while(1){ 20 if(check(n,k)) 21 break; 22 k++; 23 if(k==60){ 24 n++; 25 k=0; 26 } 27 if(n==24){ 28 n=0; 29 k=0; 30 } 31 ans++; 32 //cout<<n<<" "<<k<<endl; 33 } 34 return 0; 35 }