結果

問題 No.2631 Rectangle Grid Game
ユーザー shobonvipshobonvip
提出日時 2024-02-16 23:01:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,609 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 262,432 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-28 21:35:35
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

const mint inv2 = mint(2).inv();

// ONE DIMENSION
// sum[0<=i<x] i
mint d1sum(ll x){
	return mint(x) * mint(x-1) * inv2;
}

// sum[0<=i<x] sum[0<=j<y] ij
mint d2sum(ll x, ll y){
	return d1sum(x) * d1sum(y);
}

int main(){
	ll h, w; cin >> h >> w;
	mint ans = 0;
	ans += (d1sum(h) - d1sum((h+2)/2)) * w * 2;
	ans += (d1sum(w) - d1sum((w+2)/2)) * h * 2;
	ans += (d2sum(h, w) - d2sum((h+2)/2, w)) * 4;
	ans += (d2sum(h, w) - d2sum(h, (w+2)/2)) * 4;
	ans -= (d2sum(h, w) - d2sum(h, (w+2)/2) - d2sum((h+2)/2, w) + d2sum((h+2)/2, (w+2)/2)) * 4;
	cout << ans.val() << '\n';
}

0