結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-02-24 21:26:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 68,784 KB
最終ジャッジ日時 2024-09-13 05:02:20
合計ジャッジ時間 2,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,544 KB
testcase_01 AC 37 ms
52,956 KB
testcase_02 AC 37 ms
51,872 KB
testcase_03 AC 36 ms
53,488 KB
testcase_04 AC 37 ms
52,628 KB
testcase_05 AC 36 ms
53,236 KB
testcase_06 AC 37 ms
53,300 KB
testcase_07 AC 148 ms
68,056 KB
testcase_08 AC 148 ms
67,804 KB
testcase_09 AC 139 ms
66,472 KB
testcase_10 AC 48 ms
60,612 KB
testcase_11 AC 43 ms
59,268 KB
testcase_12 AC 137 ms
67,236 KB
testcase_13 AC 136 ms
66,608 KB
testcase_14 AC 137 ms
68,784 KB
testcase_15 AC 45 ms
60,368 KB
testcase_16 AC 46 ms
61,820 KB
testcase_17 AC 46 ms
61,052 KB
testcase_18 AC 46 ms
60,776 KB
testcase_19 AC 46 ms
61,996 KB
testcase_20 AC 45 ms
61,360 KB
testcase_21 AC 64 ms
62,320 KB
testcase_22 AC 36 ms
52,388 KB
testcase_23 AC 59 ms
62,408 KB
testcase_24 AC 49 ms
60,844 KB
testcase_25 AC 51 ms
60,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

H,W,K = map(int,stdin.readline().split())

xyv = []

for i in range(K):

    x,y,v = map(int,stdin.readline().split())
    xyv.append( (x,y,v) )

ans = 0
for i in range(1,H+1):

    for j in range(1,W+1):

        for x,y,v in xyv:

            if x+y >= i+j and x-y >= i-j:
                ans += v

print (ans % 998244353)

    
0