結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー ID 21712ID 21712
提出日時 2024-11-17 21:59:52
言語 Go
(1.22.1)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 12,316 ms
コンパイル使用メモリ 231,284 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 22:00:09
合計ジャッジ時間 13,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 56 ms
6,816 KB
testcase_08 AC 52 ms
6,816 KB
testcase_09 AC 44 ms
6,816 KB
testcase_10 AC 17 ms
6,816 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 AC 52 ms
6,816 KB
testcase_13 AC 51 ms
6,820 KB
testcase_14 AC 52 ms
6,820 KB
testcase_15 AC 15 ms
6,816 KB
testcase_16 AC 16 ms
6,816 KB
testcase_17 AC 17 ms
6,816 KB
testcase_18 AC 17 ms
6,816 KB
testcase_19 AC 17 ms
6,816 KB
testcase_20 AC 17 ms
6,816 KB
testcase_21 AC 19 ms
6,816 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 AC 17 ms
6,816 KB
testcase_24 AC 8 ms
6,820 KB
testcase_25 AC 7 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var h,w,k int
	Scan(&h,&w,&k)
	f:=make([][]int64,h+1)
	for x:=range f {
		f[x]=make([]int64,w+1)
	}
	for ;k>0;k-- {
		var x,y int
		var v int64
		Scan(&x,&y,&v)
		f[x][y]=v
	}
	var a int64
	const m=998244353
	for i:=1;i<=h;i++ {
		for j:=1;j<=w;j++ {
			for x:=1;x<=h;x++ {
				for y:=1;y<=w;y++ {
					if x+y>=i+j&&x-y>=i-j {
						a=(a+f[x][y])%m
					}
				}
			}
		}
	}
	Println(a)
}
0