結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー FromBooskaFromBooska
提出日時 2023-03-05 10:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 76,688 KB
最終ジャッジ日時 2024-09-18 01:30:32
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,264 KB
testcase_01 AC 39 ms
53,752 KB
testcase_02 AC 37 ms
52,616 KB
testcase_03 AC 37 ms
52,188 KB
testcase_04 AC 38 ms
53,536 KB
testcase_05 AC 39 ms
52,968 KB
testcase_06 AC 39 ms
52,540 KB
testcase_07 AC 125 ms
76,352 KB
testcase_08 AC 122 ms
76,352 KB
testcase_09 AC 128 ms
76,412 KB
testcase_10 AC 94 ms
70,876 KB
testcase_11 AC 98 ms
72,608 KB
testcase_12 AC 128 ms
76,688 KB
testcase_13 AC 129 ms
76,360 KB
testcase_14 AC 127 ms
76,360 KB
testcase_15 AC 102 ms
70,280 KB
testcase_16 AC 100 ms
70,896 KB
testcase_17 AC 100 ms
69,796 KB
testcase_18 AC 101 ms
70,324 KB
testcase_19 AC 101 ms
70,540 KB
testcase_20 AC 101 ms
70,508 KB
testcase_21 AC 75 ms
69,516 KB
testcase_22 AC 39 ms
52,760 KB
testcase_23 AC 72 ms
69,540 KB
testcase_24 AC 74 ms
67,428 KB
testcase_25 AC 58 ms
66,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 制約が大きければ寄与度か
# まずナイーブにやってみる
# H, W <50なので4重ループでも問題ないはず

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

calc = 0
for i in range(H):
    for j in range(W):
        subcalc = 0
        for x in range(H):
            for y in range(W):
                if x+y >= i+j and x-y >= i-j:
                    subcalc += grid[x][y]
                    subcalc %= mod
        calc += subcalc
        calc %= mod
print(calc%mod)
0