Accepted
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=2e5+10,MOD=1000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
// cin>>t;
int cas=1;
while(t--){
ll a;
cin>>a;
for(ll i=1;i<=10;i++){
ll d=i*a;
if(d%10==0){
cout<<i<<"\n";
break;
}
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1012 Zéros de fin
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-01-05 16:48:55
- Judged At
- 2024-11-11 03:43:52
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 764.0 KiB