結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー ikomaikoma
提出日時 2023-02-24 21:33:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 77,240 KB
最終ジャッジ日時 2024-09-13 05:08:34
合計ジャッジ時間 3,310 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,856 KB
testcase_01 AC 36 ms
53,532 KB
testcase_02 AC 36 ms
53,228 KB
testcase_03 AC 37 ms
53,204 KB
testcase_04 AC 38 ms
52,188 KB
testcase_05 AC 35 ms
53,016 KB
testcase_06 AC 36 ms
53,148 KB
testcase_07 AC 131 ms
76,964 KB
testcase_08 AC 129 ms
77,120 KB
testcase_09 AC 126 ms
76,976 KB
testcase_10 AC 97 ms
72,844 KB
testcase_11 AC 95 ms
72,992 KB
testcase_12 AC 128 ms
77,028 KB
testcase_13 AC 125 ms
77,240 KB
testcase_14 AC 127 ms
77,112 KB
testcase_15 AC 107 ms
72,748 KB
testcase_16 AC 109 ms
73,172 KB
testcase_17 AC 108 ms
73,548 KB
testcase_18 AC 108 ms
73,724 KB
testcase_19 AC 108 ms
72,856 KB
testcase_20 AC 110 ms
74,164 KB
testcase_21 AC 85 ms
74,536 KB
testcase_22 AC 38 ms
52,540 KB
testcase_23 AC 80 ms
73,296 KB
testcase_24 AC 77 ms
70,444 KB
testcase_25 AC 67 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())
XYV=[list(map(int,input().split())) for _ in range(K)]
Map = [[0]*W for _ in range(H)]
for x,y,v in XYV:
    Map[x-1][y-1]=v
MOD=998244353
ans=0
for i in range(H):
    for j in range(W):
        for x in range(H):
            for y in range(W):
                if i+j<=x+y and i-j<=x-y:
                    ans+=Map[x][y]
                    ans%=MOD
print(ans)
0