签到题,奇数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;
}
依旧是签到题,对于输入每一对数(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