結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー 佐藤篤樹佐藤篤樹
提出日時 2023-04-29 16:23:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,338 bytes
コンパイル時間 3,781 ms
コンパイル使用メモリ 236,464 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-29 09:19:32
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;

using namespace atcoder;
typedef long long ll;
typedef long double dd;
typedef unsigned long long ull;

typedef vector<ll> vl;
typedef vector<dd> vd;
typedef vector<bool> vb;
typedef vector<pair<ll,ll>> vl_l;

typedef vector<vector<ll>> vvl;
typedef vector<vector<dd>> vvd;
typedef vector<vector<bool>> vvb;
typedef vector<vector<pair<ll,ll>>> vvl_l;

typedef vector<vector<vector<ll>>> vvvl;
typedef vector<vector<vector<dd>>> vvvd;
typedef vector<vector<vector<bool>>> vvvb;
typedef vector<vector<vector<pair<ll,ll>>>> vvvl_l;

typedef map<ll,ll> ml;
typedef set<ll> sl;

// #define i_7 (ll)(1E9+7)
#define i_7 998244353
#define i_5 i_7-2
ll mod(ll a){
    ll c=a%i_7;
    if(c>=0)return c;
    return c+i_7;
}
typedef pair<ll,ll> l_l;
typedef pair<dd,dd> d_d;
ll inf=(ll)1E18;
#define rep(i,l,r) for(ll i=l;i<=r;i++)
#define pb push_back
ll max(ll a,ll b){if(a<b)return b;else return a;}
ll min(ll a,ll b){if(a>b)return b;else return a;}
dd EPS=1E-9;
dd PI=acos(-1);
// #define endl "\n"
#define fastio ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
template<class T,class S>
inline bool chmax(T &a, S b) {
    if(a < b) {
        a = (T)b;
        return true;
    }
    return false;
}
template<class T,class S>
inline bool chmin(T &a, S b) {
    if(a > b) {
        a = (T)b;
        return true;
    }
    return false;
}
ll hpow(ll x,ll y){
    if(y==0)return 1;
    ll res=hpow(x,y/2);
    res = mod(res*res);
    if(y%2==1){
        res *= x;
        res = mod(res);
    }
    return mod(res);
}
ll hpow_m(ll x,ll y,ll m){
    if(y==0)return 1;
    ll res=hpow_m(x,y/2,m);
    res = (res*res)%m;
    if(y%2==1){
        res *= x;
        res %= m;
    }
    return res%m;
}





signed main(){fastio
    
    ll h,w;cin>>h>>w;
    ll k;cin>>k;
    map<l_l, ll> mp;
    
    rep(i,1,k){
        ll x,y,v;cin>>x>>y>>k;
        mp[l_l(x, y)] = k;
    }
    
    ll ans = 0;
    rep(i,1,h){
        rep(j,1,w){
            rep(x,1,h){
                rep(y,1,w){
                    if(x + y >= i + j && x - y >= i - j){
                        ans += mp[l_l(x, y)];
                        ans = mod(ans);
                    }
                }
            }
        }
    }
    
    cout << ans << endl;
    
    return 0;
}






0