【题面】
链接:https://ac.nowcoder.com/acm/contest/893/C
来源:牛客网
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32768K,其他语言65536K
64bit IO Format: %lld
题目描述
已知整数a,除192的余数是1。求区间[L,R]之间满足条件的a的累加和是多少?
输入描述:
第一行是一个整数T(1≤T≤10000),表示样例的个数。
每个样例包含两个整数L,R,。
输出描述:
每行输出一个样例的结果。
【题解】
打表发现a为等差数列,公差为192,满足
算出最接近L和R的a,等差数列求和即可。
【代码】
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
int t; scanf("%d",&t);
while(t--){
int L,R; scanf("%d%d",&L,&R);
L=(L+190)/192*192+1;
R=(R-1)/192*192+1;
int l=(L-1)/192,r=(R-1)/192;
printf("%lld\n",(ll)(L+R)*(r-l+1)/2);
}
return 0;
}