思路

介绍两个函数ceil()和floor(),可以将浮点数分别进行上下取整,当然用+0.5的方式也可以,有时候可能会比较麻烦。 另外注意银牌变成金牌后,原本的银牌名额就会空出来,因此这里记一个前缀和。

代码

//#pragma GCC optimize("Ofast", "inline", "-ffast-math")
//#pragma GCC target("avx,sse2,sse3,sse4,mmx")
#include<bits/stdc++.h>
#define inf 0x3f3f3f3f
#define int long long
using namespace std;
const int N=2e5+7;
const int mod=1e9+7;

//int read(){	int x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-') f=f*-1;ch=getchar();}while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}return x*f;}

double n;
int a,b,c;

signed main(){
//	ios::sync_with_stdio(0);
//	cin.tie(0);cout.tie(0);
//  freopen("in.cpp","r",stdin);
//  freopen("out.cpp","w",stdout);
	cin>>n;
	a=ceil(n*0.1)-floor(n*0.1);
	b=a+ceil(n*0.2)-floor(n*0.2);
	c=b+ceil(n*0.3)-floor(n*0.3);	
	cout<<a<<" "<<b<<" "<<c<<"\n";
	return 0;
}