結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー tamatotamato
提出日時 2023-02-24 21:50:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,524 KB
実行使用メモリ 76,068 KB
最終ジャッジ日時 2024-09-13 05:22:14
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,284 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 38 ms
52,564 KB
testcase_03 AC 38 ms
52,268 KB
testcase_04 AC 38 ms
52,404 KB
testcase_05 AC 37 ms
53,004 KB
testcase_06 AC 37 ms
52,680 KB
testcase_07 AC 99 ms
75,436 KB
testcase_08 AC 107 ms
75,324 KB
testcase_09 AC 114 ms
75,352 KB
testcase_10 AC 99 ms
75,500 KB
testcase_11 AC 99 ms
75,832 KB
testcase_12 AC 81 ms
75,440 KB
testcase_13 AC 80 ms
75,728 KB
testcase_14 AC 79 ms
75,316 KB
testcase_15 AC 125 ms
75,344 KB
testcase_16 AC 126 ms
76,068 KB
testcase_17 AC 127 ms
75,552 KB
testcase_18 AC 126 ms
75,952 KB
testcase_19 AC 126 ms
75,484 KB
testcase_20 AC 126 ms
75,464 KB
testcase_21 AC 126 ms
76,024 KB
testcase_22 AC 124 ms
75,800 KB
testcase_23 AC 87 ms
75,588 KB
testcase_24 AC 89 ms
75,692 KB
testcase_25 AC 96 ms
75,692 KB
testcase_26 AC 79 ms
75,480 KB
testcase_27 AC 62 ms
72,948 KB
testcase_28 AC 111 ms
75,852 KB
testcase_29 AC 109 ms
75,768 KB
testcase_30 AC 67 ms
75,668 KB
testcase_31 AC 76 ms
75,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


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

    def f(h):
        h += 1
        return h * (h + 1) // 2

    H, W, K = map(int, input().split())
    ans = 0
    for _ in range(K):
        h, w, v = map(int, input().split())
        h -= 1
        w -= 1
        tmp = ((h + 1) * (h + 1)) % mod
        h1 = h - w - 1
        if h1 >= 0:
            tmp = (tmp - f(h1)) % mod
        h2 = h - (W - w)
        if h2 >= 0:
            tmp = (tmp - f(h2)) % mod
        ans = (ans + tmp * v) % mod
    print(ans)


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