結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー 👑 KazunKazun
提出日時 2023-02-24 21:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,620 KB
実行使用メモリ 76,380 KB
最終ジャッジ日時 2024-09-13 05:00:47
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,936 KB
testcase_01 AC 40 ms
52,368 KB
testcase_02 AC 39 ms
52,144 KB
testcase_03 AC 40 ms
52,432 KB
testcase_04 AC 39 ms
53,184 KB
testcase_05 AC 39 ms
52,932 KB
testcase_06 AC 40 ms
53,272 KB
testcase_07 AC 125 ms
75,948 KB
testcase_08 AC 123 ms
76,100 KB
testcase_09 AC 122 ms
75,948 KB
testcase_10 AC 103 ms
75,440 KB
testcase_11 AC 100 ms
75,208 KB
testcase_12 AC 121 ms
75,972 KB
testcase_13 AC 122 ms
75,976 KB
testcase_14 AC 123 ms
76,380 KB
testcase_15 AC 103 ms
75,568 KB
testcase_16 AC 103 ms
75,568 KB
testcase_17 AC 102 ms
75,328 KB
testcase_18 AC 103 ms
75,084 KB
testcase_19 AC 103 ms
74,956 KB
testcase_20 AC 104 ms
75,380 KB
testcase_21 AC 78 ms
75,132 KB
testcase_22 AC 40 ms
52,268 KB
testcase_23 AC 78 ms
75,860 KB
testcase_24 AC 82 ms
75,036 KB
testcase_25 AC 60 ms
67,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    H,W,K=map(int,input().split())

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

    Ans=0
    for i in range(1,H+1):
        for j in range(1,W+1):
            for x in range(1,H+1):
                for y in range(1,W+1):
                    if x+y>=i+j and x-y>=i-j:
                        Ans+=T[x][y]
    return Ans%998244353

#==================================================
print(solve())
0