結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー ttkkggwwttkkggww
提出日時 2023-02-24 21:46:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 4,504 ms
コンパイル使用メモリ 264,052 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-13 05:19:15
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 55 ms
7,936 KB
testcase_08 AC 61 ms
7,936 KB
testcase_09 AC 56 ms
7,808 KB
testcase_10 AC 55 ms
7,936 KB
testcase_11 AC 54 ms
7,936 KB
testcase_12 AC 31 ms
6,940 KB
testcase_13 AC 31 ms
6,944 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 61 ms
7,936 KB
testcase_16 AC 60 ms
7,936 KB
testcase_17 AC 61 ms
7,936 KB
testcase_18 AC 61 ms
7,936 KB
testcase_19 AC 61 ms
7,936 KB
testcase_20 AC 61 ms
7,936 KB
testcase_21 AC 61 ms
7,936 KB
testcase_22 AC 61 ms
7,936 KB
testcase_23 AC 25 ms
6,940 KB
testcase_24 AC 32 ms
6,940 KB
testcase_25 AC 37 ms
6,940 KB
testcase_26 AC 15 ms
6,940 KB
testcase_27 AC 6 ms
6,944 KB
testcase_28 AC 51 ms
7,168 KB
testcase_29 AC 47 ms
6,944 KB
testcase_30 AC 8 ms
6,940 KB
testcase_31 AC 14 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
ll h,w,n;
vector<ll> x,y,v;

void solve(){
	mint ans = 0;
	for(int i =0 ;i<n;i++){
		mint keisu = mint(x[i])*mint(x[i]);
		ll lh = x[i]-y[i];
		lh = max(0ll,lh);
		ll rh = x[i]-(w-y[i]+1);
		rh = max(0ll,rh);
		//cout<<keisu.val()<<' '<<lh<<' '<<rh<<' ';
		keisu -= (rh*(rh+1)/2);
		keisu -= (lh*(lh+1)/2);
		ans += keisu*v[i];
	}
	cout<<ans.val()<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> h >> w >> n;
	x = y = v = vector<ll>(n);
	for(int i = 0;i<n;i++){
		cin >> x[i] >> y[i] >> v[i];
	}
	solve();
}
0