結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー timitimi
提出日時 2023-02-24 21:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 76,488 KB
最終ジャッジ日時 2024-09-13 05:12:30
合計ジャッジ時間 3,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,556 KB
testcase_01 AC 38 ms
52,888 KB
testcase_02 AC 37 ms
52,752 KB
testcase_03 AC 38 ms
53,320 KB
testcase_04 AC 37 ms
53,100 KB
testcase_05 AC 37 ms
52,992 KB
testcase_06 AC 37 ms
54,048 KB
testcase_07 AC 136 ms
76,488 KB
testcase_08 AC 133 ms
76,148 KB
testcase_09 AC 128 ms
76,376 KB
testcase_10 AC 106 ms
72,680 KB
testcase_11 AC 106 ms
72,932 KB
testcase_12 AC 125 ms
76,420 KB
testcase_13 AC 126 ms
76,112 KB
testcase_14 AC 125 ms
76,076 KB
testcase_15 AC 98 ms
72,536 KB
testcase_16 AC 99 ms
72,844 KB
testcase_17 AC 100 ms
73,560 KB
testcase_18 AC 99 ms
73,720 KB
testcase_19 AC 99 ms
73,344 KB
testcase_20 AC 98 ms
73,480 KB
testcase_21 AC 82 ms
73,452 KB
testcase_22 AC 36 ms
53,500 KB
testcase_23 AC 78 ms
73,064 KB
testcase_24 AC 80 ms
70,548 KB
testcase_25 AC 64 ms
68,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int, input().split())
mod=998244353 
A=[[0]*W for _ in range(H)]
for i in range(K):
  x,y,v=map(int, input().split())
  x-=1
  y-=1
  A[x][y]=v 
ans=0
for h in range(H):
  for w in range(W):
    for hh in range(H):
      for ww in range(W):
        if hh+ww>=h+w and hh-ww>=h-w:
          ans+=A[hh][ww]
          ans%=mod
print(ans)          
0