結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,508 KB
testcase_01 AC 37 ms
53,228 KB
testcase_02 AC 36 ms
52,248 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 37 ms
52,304 KB
testcase_06 AC 38 ms
53,492 KB
testcase_07 AC 131 ms
76,624 KB
testcase_08 AC 130 ms
76,548 KB
testcase_09 AC 125 ms
76,396 KB
testcase_10 AC 111 ms
74,036 KB
testcase_11 AC 106 ms
73,416 KB
testcase_12 AC 124 ms
76,716 KB
testcase_13 AC 126 ms
76,572 KB
testcase_14 AC 124 ms
76,692 KB
testcase_15 AC 99 ms
73,312 KB
testcase_16 AC 99 ms
73,192 KB
testcase_17 AC 99 ms
73,928 KB
testcase_18 AC 99 ms
73,224 KB
testcase_19 AC 98 ms
72,724 KB
testcase_20 AC 100 ms
73,624 KB
testcase_21 AC 81 ms
72,560 KB
testcase_22 AC 37 ms
53,132 KB
testcase_23 AC 77 ms
72,908 KB
testcase_24 AC 81 ms
70,516 KB
testcase_25 AC 64 ms
69,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
H,W,K = map(int,input().split())

G = [[0]*W for _ in range(H)]
for _ in range(K):
    y,x,v = map(int,input().split())
    G[y-1][x-1] = v

res = 0
for i in range(H):
    for j in range(W):
        for y in range(H):
            for x in range(W):
                if (y+x >= i+j) and (y-x) >= (i-j):
                    res += G[y][x]
                    res %= MOD

print(res)

    
0