View Code of Problem 70

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<vector>
#include<map>
#include<string>
#include<set>
using namespace std;
int main(){
    int x,y;
	scanf("%d",&x);
	if(x<=100000){
		y=x*0.1;
	} else if(x>100000&&x<200000){
		y=100000*0.1+(x-10000)*0.075;
	} else if(x>200000&&x<=400000){
		y=10000+7500+(x-200000)*0.05;
	}else if(x>400000&&x<600000){
		y=10000+7500+200000*0.05+(x-400000)*0.03;
	}else if(x>600000&&x<1000000){
		y=17500+200000*0.05+200000*0.03+(x-600000)*0.015;
	}
	else if(x>1000000){
		y=17500+200000*0.05+200000*0.03+400000*0.015+(x-1000000)*0.01;
	}
	printf("%d",y);
	return 0;
}
/*
110110000
111000000
011011000
100100100
010111010
001001001
000110110
000000111
000011011
*/

Double click to view unformatted code.


Back to problem 70