結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー prussian_coderprussian_coder
提出日時 2023-02-24 21:30:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-09-13 05:06:10
合計ジャッジ時間 3,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,956 KB
testcase_01 AC 39 ms
53,068 KB
testcase_02 AC 39 ms
52,956 KB
testcase_03 AC 37 ms
53,260 KB
testcase_04 AC 37 ms
52,960 KB
testcase_05 AC 37 ms
53,292 KB
testcase_06 AC 37 ms
52,228 KB
testcase_07 AC 127 ms
76,160 KB
testcase_08 AC 119 ms
76,460 KB
testcase_09 AC 125 ms
76,744 KB
testcase_10 AC 94 ms
71,352 KB
testcase_11 AC 92 ms
69,480 KB
testcase_12 AC 127 ms
76,052 KB
testcase_13 AC 128 ms
76,144 KB
testcase_14 AC 128 ms
76,036 KB
testcase_15 AC 101 ms
71,464 KB
testcase_16 AC 100 ms
70,268 KB
testcase_17 AC 100 ms
71,124 KB
testcase_18 AC 100 ms
70,224 KB
testcase_19 AC 100 ms
71,324 KB
testcase_20 AC 100 ms
71,492 KB
testcase_21 AC 74 ms
69,472 KB
testcase_22 AC 37 ms
54,044 KB
testcase_23 AC 72 ms
70,236 KB
testcase_24 AC 75 ms
68,764 KB
testcase_25 AC 57 ms
65,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())
S=[[0 for _ in range(W)] for _ in range(H)]
for i in range(K):
    a,b,c=map(int,input().split())
    S[a-1][b-1]+=c
    
ans=0
mod=998244353
for i in range(H):
    for j in range(W):
        for x in range(H):
            for y in range(W):
                if x+y>=i+j and x-y>=i-j:
                    ans+=S[x][y]
                    ans%=mod
print(ans)                
0