結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-12-09 00:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 75,144 KB
最終ジャッジ日時 2024-10-14 18:19:48
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,816 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 136 ms
75,072 KB
testcase_08 AC 132 ms
75,052 KB
testcase_09 AC 133 ms
75,144 KB
testcase_10 AC 51 ms
61,696 KB
testcase_11 AC 46 ms
59,520 KB
testcase_12 AC 132 ms
75,008 KB
testcase_13 AC 133 ms
74,940 KB
testcase_14 AC 133 ms
75,136 KB
testcase_15 AC 46 ms
60,416 KB
testcase_16 AC 47 ms
60,416 KB
testcase_17 AC 46 ms
60,288 KB
testcase_18 AC 46 ms
60,032 KB
testcase_19 AC 47 ms
60,160 KB
testcase_20 AC 46 ms
60,800 KB
testcase_21 AC 70 ms
64,640 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 71 ms
65,664 KB
testcase_24 AC 54 ms
62,208 KB
testcase_25 AC 56 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, K = map(int, input().split())
x = []
y = []
v = []
for i in range(K):
    X, Y, V = map(int, input().split())
    x.append(X - 1)
    y.append(Y - 1)
    v.append(V)
ans = 0
mod = 998244353

for i in range(H):
    for j in range(W):
        for k in range(K):
            if x[k] + y[k] >= i + j and x[k] - y[k] >= i - j:
                ans = (ans + v[k]) % mod
print(ans)
0