A. Contest Start1000 / 思维

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Contest Start1000 / 思维相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/1539/A
详细题解

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
	LL t; cin>>t;
	while(t--)
	{
		LL n,x,t; cin>>n>>x>>t;
		if(n*x<=t) cout<<n*(n-1)/2<<endl;
		else
		{
			LL cnt=t/x;
			LL num=n-cnt;
			cout<<num*cnt+cnt*(cnt-1)/2<<endl;
		}
	}
	return 0;
}

以上是关于A. Contest Start1000 / 思维的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #625 (Div. 2, based on Technocup 2020 Final Round) A. Contest for Robots(思维题)

2018 Multi-University Training Contest 3 1001 / hdu6319 Problem A. Ascending Rating 单调队列,思维

A. Donut Shops1000 / 思维题

A. Mike and palindrome1000 / 思维

A. Berland Poker1000 / 贪心 思维

A. Dima and Friends1000 / 思维