結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー 👑 rin204rin204
提出日時 2023-03-06 00:33:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-18 01:43:53
合計ジャッジ時間 6,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 195 ms
76,544 KB
testcase_08 AC 201 ms
76,608 KB
testcase_09 AC 200 ms
77,052 KB
testcase_10 AC 188 ms
76,696 KB
testcase_11 AC 207 ms
77,440 KB
testcase_12 AC 126 ms
76,032 KB
testcase_13 AC 130 ms
76,160 KB
testcase_14 AC 127 ms
76,296 KB
testcase_15 AC 188 ms
76,500 KB
testcase_16 AC 200 ms
76,288 KB
testcase_17 AC 199 ms
76,804 KB
testcase_18 AC 200 ms
76,416 KB
testcase_19 AC 189 ms
76,416 KB
testcase_20 AC 189 ms
76,416 KB
testcase_21 AC 189 ms
77,156 KB
testcase_22 AC 200 ms
76,544 KB
testcase_23 AC 123 ms
76,288 KB
testcase_24 AC 134 ms
76,212 KB
testcase_25 AC 140 ms
76,460 KB
testcase_26 AC 107 ms
76,784 KB
testcase_27 AC 87 ms
76,152 KB
testcase_28 AC 170 ms
76,288 KB
testcase_29 AC 168 ms
76,348 KB
testcase_30 AC 97 ms
76,288 KB
testcase_31 AC 112 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def leq_cnt(x, y, z):
    """
    i \\in [0, x), j \\in [0, y), i + j <= z を満たす (i, j) の個数を返す
    """
    if z < 0:
        return 0
    if z >= x + y - 2:
        return x * y

    l1 = z - x + 1
    l2 = z + 1
    if l1 >= 0:
        ret = l1 * x
        ret += x * (x + 1) // 2
    else:
        ret = (z + 1) * (z + 2) // 2
    if l2 >= y:
        ret -= (z - y + 2) * (z - y + 1) // 2
    return ret

MOD = 998244353
h, w, k = map(int, input().split())
ans = 0
for i in range(k):
    x, y, z = map(int, input().split())
    cnt = x
    cnt += leq_cnt(x - 1, y - 1, x - 2)
    cnt += leq_cnt(x - 1, w - y, x - 2)
    cnt %= MOD
    ans += cnt * z % MOD
    ans %= MOD
print(ans)
0