比赛 2022级DP专题练习赛3 评测结果 WWWWWWWWW
题目名称 黑白棋 最终得分 0
用户昵称 zxhhh 运行时间 0.005 s
代码语言 C++ 内存使用 0.64 MiB
提交时间 2023-02-17 19:40:29
显示代码纯文本
#include <bits/stdc++.h>

using namespace std;

const int N = 10005, mod = 1e9 + 7;
typedef long long ll;

int n, k, d;

int main () {
	freopen("sdoi2011_hbq.in", "r", stdin);
	freopen("sdoi2011_hbq.out", "w", stdout);
	cin >> n >> k >> d;
	ll ans = (n * (n - 1) / 2) % mod;
	cout << ans << endl; 
	return 0;
}