牛客白月赛31题解

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客白月赛31题解相关的知识,希望对你有一定的参考价值。

https://ac.nowcoder.com/acm/contest/10746

目录

坐标计数

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)

	int t; cin>>t;
	while(t--)
	
		LL x,y,xx,yy; cin>>x>>y>>xx>>yy;
		cout<<(abs(xx-x)+1)*(abs(y-yy)+1)<<endl;
	
	return 0;

以上是关于牛客白月赛31题解的主要内容,如果未能解决你的问题,请参考以下文章

牛客白月赛8题解

牛客白月赛4 题解

牛客白月赛11题解

牛客白月赛12题解

牛客白月赛10题解

牛客白月赛14题解