結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー ああいいああいい
提出日時 2023-02-25 14:34:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,708 KB
最終ジャッジ日時 2024-09-13 11:38:53
合計ジャッジ時間 3,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,240 KB
testcase_01 AC 38 ms
53,356 KB
testcase_02 AC 38 ms
52,684 KB
testcase_03 AC 38 ms
52,160 KB
testcase_04 AC 37 ms
53,660 KB
testcase_05 AC 37 ms
53,304 KB
testcase_06 AC 38 ms
52,664 KB
testcase_07 AC 107 ms
76,708 KB
testcase_08 AC 107 ms
76,416 KB
testcase_09 AC 112 ms
76,316 KB
testcase_10 AC 80 ms
69,504 KB
testcase_11 AC 81 ms
69,504 KB
testcase_12 AC 114 ms
76,272 KB
testcase_13 AC 112 ms
76,272 KB
testcase_14 AC 110 ms
76,432 KB
testcase_15 AC 84 ms
69,504 KB
testcase_16 AC 84 ms
69,632 KB
testcase_17 AC 85 ms
69,504 KB
testcase_18 AC 85 ms
69,376 KB
testcase_19 AC 85 ms
69,504 KB
testcase_20 AC 85 ms
69,504 KB
testcase_21 AC 77 ms
70,784 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 73 ms
71,424 KB
testcase_24 AC 67 ms
68,480 KB
testcase_25 AC 62 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(H):
    for j in range(W):
        for x in range(i,H):
            for y in range(W):
                if x + y >= i + j and x - y >= i - j:
                    ans += dat[x][y]
        ans %= P
print(ans)
0