結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-24 21:50:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-09-13 05:22:23
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,584 KB
testcase_01 AC 39 ms
52,732 KB
testcase_02 AC 39 ms
52,280 KB
testcase_03 AC 38 ms
52,688 KB
testcase_04 AC 39 ms
53,268 KB
testcase_05 AC 38 ms
51,892 KB
testcase_06 AC 39 ms
52,556 KB
testcase_07 AC 121 ms
76,136 KB
testcase_08 AC 122 ms
76,288 KB
testcase_09 AC 126 ms
76,440 KB
testcase_10 AC 96 ms
71,056 KB
testcase_11 AC 94 ms
69,476 KB
testcase_12 AC 128 ms
76,376 KB
testcase_13 AC 128 ms
76,140 KB
testcase_14 AC 126 ms
76,144 KB
testcase_15 AC 101 ms
70,308 KB
testcase_16 AC 102 ms
69,612 KB
testcase_17 AC 101 ms
70,864 KB
testcase_18 AC 102 ms
69,936 KB
testcase_19 AC 102 ms
70,832 KB
testcase_20 AC 101 ms
70,476 KB
testcase_21 AC 76 ms
68,916 KB
testcase_22 AC 39 ms
53,528 KB
testcase_23 AC 74 ms
70,272 KB
testcase_24 AC 75 ms
66,916 KB
testcase_25 AC 61 ms
66,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,k = map(int,input().split())
g = [[0]*w for i in range(h)]
for i in range(k):
    x,y,v = map(int,input().split())
    g[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 x+y >= i+j and x-y >= i-j:
                    ans += g[x][y]
                    ans %= mod
print(ans)
0