/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 4ms 532.0 KiB
#3 Accepted 4ms 532.0 KiB
#4 Accepted 4ms 532.0 KiB
#5 Accepted 4ms 532.0 KiB
#6 Accepted 4ms 532.0 KiB
#7 Accepted 4ms 532.0 KiB
#8 Accepted 4ms 532.0 KiB
#9 Accepted 4ms 532.0 KiB
#10 Accepted 4ms 532.0 KiB
#11 Accepted 4ms 532.0 KiB
#12 Accepted 4ms 532.0 KiB
#13 Accepted 4ms 532.0 KiB
#14 Accepted 4ms 532.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

#define		Alhamdulillah 		ios_base::sync_with_stdio(0); cin.tie(0);
#define	    ll 			 		long long
#define	    ld 			 		long double
#define	    ull 			 	unsigned long long
#define	    lcm(a,b) 			((a*b)/__gcd(a,b))
#define	    endl 			 	"\n"
#define	    pb 					push_back
#define	    ppb 				pop_back
#define	    all(c) 				c.begin(),c.end()
#define     srt(v)             	sort(v.begin(),v.end())
#define	    rsrt(v)            	sort(v.rbegin(),v.rend())
#define     printp(p)          	for(auto i:p)   cout << i.first <<  " " << i.second << endl; cout << endl;
#define     printv(v)          	for(auto i:v)   cout << i <<  " "; cout << endl;
#define     printm(m)          	for(auto [x,y]:m)   cout << x <<  " " << y << endl; cout << endl;


void solve(){
    int n;  cin >> n;
    cout << (n/500)*1000 + ((n%500)/5)*5;
}


int main(){
    Alhamdulillah
    int t = 1;  //cin >> t;
    while(t--)    solve();
    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 14:42:59
Judged At
2025-02-17 14:42:59
Judged By
Score
100
Total Time
4ms
Peak Memory
532.0 KiB