結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー 👑 rin204rin204
提出日時 2023-03-06 00:34:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,340 KB
最終ジャッジ日時 2024-09-18 01:44:00
合計ジャッジ時間 2,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 79 ms
75,904 KB
testcase_08 AC 81 ms
76,160 KB
testcase_09 AC 88 ms
76,032 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 79 ms
76,288 KB
testcase_13 AC 81 ms
76,160 KB
testcase_14 AC 79 ms
76,340 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 37 ms
51,584 KB
testcase_18 AC 37 ms
52,736 KB
testcase_19 AC 37 ms
52,248 KB
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 50 ms
56,064 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 53 ms
61,696 KB
testcase_24 AC 39 ms
53,376 KB
testcase_25 AC 42 ms
53,760 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