首页 > 其他 > 详细

【ATcoder Beginner Contest 181】A~E题解

时间:2020-11-02 08:33:03      阅读:34      评论:0      收藏:0      [点我收藏+]

越学越菜系列

于2020.11.2

A - Heavy Rotation

签到题,奇数Black,偶数White。
code:

#include<bits/stdc++.h>
#define N 10000005
#define LL long long 
using namespace std;
 
int t;
int a,b;
 
inline LL qr()
{
	LL x=0,w=1;char a=0;
	while(a<‘0‘||a>‘9‘){if(a==‘-‘)w=-1;a=getchar();}
	while(a<=‘9‘&&a>=‘0‘){x=(x<<3)+(x<<1)+(a^48);a=getchar();}
	return x*w;
}
 
int main()
{
	t=qr();
	if(t%2==1)
	      cout<<"Black"<<endl;
	else
	      cout<<"White"<<endl;
	return 0;
}

B - Trapezoid Sum

依旧是签到题,对于输入每一对数(a,b)求以a为首项,公差为1的等差数列和即可。
code:

#include<bits/stdc++.h>
#define N 1000005
#define LL long long 
using namespace std;
 
int n;
LL a[N],b[N];
 
inline LL qr()
{
	LL x=0,w=1;char a=0;
	while(a<‘0‘||a>‘9‘){if(a==‘-‘)w=-1;a=getchar();}
	while(a<=‘9‘&&a>=‘0‘){x=(x<<3)+(x<<1)+(a^48);a=getchar();}
	return x*w;
}
 
LL ans;
 
int main()
{
	n=qr();
	for(register int i=1;i<=n;i++)
		a[i]=qr(),b[i]=qr();
	for(register int i=1;i<=n;i++)
		ans+=(b[i]+a[i])*(b[i]-a[i]+1)/2;
	cout<<ans<<endl;
	return 0;
}

【ATcoder Beginner Contest 181】A~E题解

原文:https://www.cnblogs.com/isonder/p/13912617.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!