結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー floraflora
提出日時 2023-03-02 17:45:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-17 11:55:06
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 134 ms
76,416 KB
testcase_08 AC 136 ms
76,396 KB
testcase_09 AC 123 ms
76,672 KB
testcase_10 AC 106 ms
72,448 KB
testcase_11 AC 107 ms
71,936 KB
testcase_12 AC 122 ms
76,288 KB
testcase_13 AC 123 ms
76,400 KB
testcase_14 AC 123 ms
76,288 KB
testcase_15 AC 96 ms
72,192 KB
testcase_16 AC 95 ms
71,936 KB
testcase_17 AC 97 ms
72,320 KB
testcase_18 AC 97 ms
72,064 KB
testcase_19 AC 95 ms
72,064 KB
testcase_20 AC 97 ms
71,936 KB
testcase_21 AC 77 ms
71,296 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 79 ms
71,936 KB
testcase_24 AC 76 ms
69,760 KB
testcase_25 AC 67 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(les%mod)
0