結果
問題 | No.2225 Treasure Searching Rod (Easy) |
ユーザー | ttkkggww |
提出日時 | 2023-02-24 21:46:32 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 686 bytes |
コンパイル時間 | 4,474 ms |
コンパイル使用メモリ | 263,924 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 05:18:55 |
合計ジャッジ時間 | 5,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#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(); }