結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー daiotadaiota
提出日時 2023-02-25 06:14:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 167,172 KB
実行使用メモリ 8,164 KB
最終ジャッジ日時 2024-09-13 08:54:09
合計ジャッジ時間 4,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 52 ms
8,160 KB
testcase_08 AC 58 ms
8,160 KB
testcase_09 AC 54 ms
7,912 KB
testcase_10 AC 52 ms
8,028 KB
testcase_11 AC 52 ms
8,028 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 AC 29 ms
6,940 KB
testcase_14 AC 27 ms
7,652 KB
testcase_15 AC 59 ms
8,036 KB
testcase_16 AC 59 ms
8,156 KB
testcase_17 AC 59 ms
8,156 KB
testcase_18 AC 60 ms
8,160 KB
testcase_19 AC 58 ms
8,032 KB
testcase_20 AC 58 ms
8,164 KB
testcase_21 AC 58 ms
8,164 KB
testcase_22 AC 59 ms
8,164 KB
testcase_23 AC 25 ms
6,940 KB
testcase_24 AC 31 ms
7,008 KB
testcase_25 AC 36 ms
6,944 KB
testcase_26 AC 15 ms
6,944 KB
testcase_27 AC 7 ms
7,516 KB
testcase_28 AC 48 ms
7,648 KB
testcase_29 AC 46 ms
7,392 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 14 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(int i=0;i<int(n);i++)

const ll MOD=998244353;
ll x[200010],y[200010],v[200010];

int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	int i,j,k;

	ll H,W,K;
	cin >> H >> W >> K;

	for(i=1;i<=K;i++) cin >> x[i] >> y[i] >> v[i];

	ll ans=0;
	for(i=1;i<=K;i++){
		ll a=x[i],b=y[i];
		ll s=a*a;
		if(a+b-W>=2) s-=(a+b-W-1)*(a+b-W)/2;
		if(a-b>=1) s-=(a-b+1)*(a-b)/2;

		ans+=s*v[i];
		ans%=MOD;
	}

	cout << ans << endl;


	return 0;
}
0