結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー shobonvipshobonvip
提出日時 2023-02-24 21:29:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-09-13 05:06:03
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 39 ms
52,364 KB
testcase_02 AC 40 ms
52,328 KB
testcase_03 AC 39 ms
52,628 KB
testcase_04 AC 38 ms
52,424 KB
testcase_05 AC 38 ms
53,056 KB
testcase_06 AC 38 ms
53,416 KB
testcase_07 AC 121 ms
76,088 KB
testcase_08 AC 121 ms
76,344 KB
testcase_09 AC 126 ms
75,800 KB
testcase_10 AC 93 ms
70,572 KB
testcase_11 AC 93 ms
69,916 KB
testcase_12 AC 126 ms
76,616 KB
testcase_13 AC 126 ms
76,460 KB
testcase_14 AC 127 ms
76,356 KB
testcase_15 AC 99 ms
70,324 KB
testcase_16 AC 101 ms
70,076 KB
testcase_17 AC 102 ms
71,040 KB
testcase_18 AC 102 ms
69,332 KB
testcase_19 AC 100 ms
69,596 KB
testcase_20 AC 101 ms
69,724 KB
testcase_21 AC 74 ms
69,492 KB
testcase_22 AC 38 ms
53,076 KB
testcase_23 AC 72 ms
70,600 KB
testcase_24 AC 74 ms
67,300 KB
testcase_25 AC 59 ms
65,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
h,w,k = map(int,input().split())
a = [[0] * w for i in range(h)]
for i in range(k):
	x,y,v = map(int,input().split())
	a[x-1][y-1] = v

ans = 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:
					ans = (ans + a[x][y]) % mod

print(ans)
0