Accepted
Code
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long n;cin>>n;
if(n>=500)
{
long long r=n/500;
long long y= n%500;
cout<<r*500*2+(y/5)*5<<endl;
}
else
{
long long r=n/5;
long long y=n%5;
cout<<(r*5)<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1132 Festivity Frenzy!
- Contest
- Brain Booster #8
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-02-17 15:30:11
- Judged At
- 2025-02-17 15:30:11
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 584.0 KiB