B. Buttons1000 / 找规律
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Buttons1000 / 找规律相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/268/B
n=4
3 41 431 4321
2 42
1
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
int n; cin>>n;
LL ans=0;
for(int i=n-1,j=1;i>=1;i--,j++)
{
ans+=i*j;
}
cout<<ans+n<<endl;
}
以上是关于B. Buttons1000 / 找规律的主要内容,如果未能解决你的问题,请参考以下文章
B. Lovely Palindromes1000 / 构造 找规律
B. Present from Lena1000 / 找规律
B. Different Divisors1000 / 数论 思维
Codeforces Round #723 (Div. 2) B. I Hate 1111(找规律,性质)