[NOIP2017 普及组] 成绩

答案来了。

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

int d1,d2,ans;

int get(int y,int m){
	if(m==1||m==3||m==5||m==7||m==8||m==10||m==12){
		return 31;
	}
	if(m==4||m==6||m==9||m==11){
		return 30;
	}
	if(y%4==0&&y%100!=0||y%400==0){
		return 29;
	}
	else{
		return 28;
	}
}

int ne(int x){
	int y=x/10000;
	int m=x/100%100;
	int d=x%100;
	if(d!=get(y,m)){
		d+=1;
	}
	else{
		if(m!=12){
			m+=1;
			d=1;
		}
		else{
			y+=1;
			m=1;
			d=1;
		}
	}
	return 10000*y+100*m+d;
}

int rev(int x){
	int ans=0;
	while (x){
		ans=ans*10+(x%10);
		x/=10;
	}
	return ans;
}

int main(){
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
int d=a/10*2+b/10*3+c/10*5;
printf("%d",d);
}

免费的:

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

int d1,d2,ans;

int get(int y,int m){
    if(m==1||m==3||m==5||m==7||m==8||m==10||m==12){
        return 31;
    }
    if(m==4||m==6||m==9||m==11){
        return 30;
    }
    if(y%4==0&&y%100!=0||y%400==0){
        return 29;
    }
    else{
        return 28;
    }
}

int ne(int x){
    int y=x/10000;
    int m=x/100%100;
    int d=x%100;
    if(d!=get(y,m)){
        d+=1;
    }
    else{
        if(m!=12){
            m+=1;
            d=1;
        }
        else{
            y+=1;
            m=1;
            d=1;
        }
    }
    return 10000*y+100*m+d;
}

int rev(int x){
    int ans=0;
    while (x){
        ans=ans*10+(x%10);
        x/=10;
    }
    return ans;
}

int main(){
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
int d=a/10*2+b/10*3+c/10*5;
printf("%d",d);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值