結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー tamatotamato
提出日時 2023-02-24 21:24:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,480 KB
実行使用メモリ 76,100 KB
最終ジャッジ日時 2024-09-13 05:01:04
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,432 KB
testcase_01 AC 38 ms
52,140 KB
testcase_02 AC 37 ms
53,088 KB
testcase_03 AC 37 ms
52,708 KB
testcase_04 AC 38 ms
52,540 KB
testcase_05 AC 38 ms
52,124 KB
testcase_06 AC 37 ms
53,536 KB
testcase_07 AC 106 ms
76,084 KB
testcase_08 AC 109 ms
76,100 KB
testcase_09 AC 107 ms
75,980 KB
testcase_10 AC 103 ms
75,544 KB
testcase_11 AC 106 ms
75,408 KB
testcase_12 AC 107 ms
75,872 KB
testcase_13 AC 105 ms
75,836 KB
testcase_14 AC 105 ms
75,636 KB
testcase_15 AC 100 ms
75,408 KB
testcase_16 AC 98 ms
75,804 KB
testcase_17 AC 99 ms
75,764 KB
testcase_18 AC 99 ms
75,776 KB
testcase_19 AC 102 ms
75,532 KB
testcase_20 AC 100 ms
75,684 KB
testcase_21 AC 66 ms
73,676 KB
testcase_22 AC 38 ms
52,576 KB
testcase_23 AC 68 ms
75,464 KB
testcase_24 AC 77 ms
75,592 KB
testcase_25 AC 57 ms
68,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

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

    ans = 0
    for h0 in range(H):
        for w0 in range(W):
            for h in range(H):
                for w in range(W):
                    if h + w >= h0 + w0 and h - w >= h0 - w0:
                        ans += G[h][w]
                        ans %= mod
    print(ans)


if __name__ == '__main__':
    main()
0