結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-12-09 00:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,768 KB
最終ジャッジ日時 2024-10-14 18:21:27
合計ジャッジ時間 8,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 193 ms
76,308 KB
testcase_08 AC 201 ms
76,236 KB
testcase_09 AC 190 ms
75,988 KB
testcase_10 AC 187 ms
76,420 KB
testcase_11 AC 201 ms
76,768 KB
testcase_12 AC 124 ms
76,272 KB
testcase_13 AC 124 ms
76,544 KB
testcase_14 AC 122 ms
75,972 KB
testcase_15 AC 188 ms
76,416 KB
testcase_16 AC 187 ms
76,416 KB
testcase_17 AC 187 ms
75,912 KB
testcase_18 AC 189 ms
76,260 KB
testcase_19 AC 187 ms
76,068 KB
testcase_20 AC 188 ms
76,480 KB
testcase_21 AC 188 ms
76,544 KB
testcase_22 AC 186 ms
76,544 KB
testcase_23 AC 118 ms
75,948 KB
testcase_24 AC 125 ms
75,904 KB
testcase_25 AC 135 ms
75,996 KB
testcase_26 AC 104 ms
76,160 KB
testcase_27 AC 86 ms
75,816 KB
testcase_28 AC 163 ms
75,916 KB
testcase_29 AC 165 ms
76,020 KB
testcase_30 AC 87 ms
76,076 KB
testcase_31 AC 100 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, K = map(int, input().split())
ans = 0
mod = 998244353

def calc(x, y):
    ret = 0
    if x <= y:
        ret += x * (x + 1) // 2
    else:
        ret += (x * (x + 1) // 2 - (x - y) * (x - y + 1) // 2)

    if x <= W - y + 1:
        ret += x * (x + 1) // 2
    else:
        ret += (x * (x + 1) // 2 - (x - (W - y + 1)) * (x - (W - y + 1) + 1) // 2)
    ret -= x
    return ret

for i in range(K):
    x, y, v = map(int, input().split())
    C = calc(x, y) % mod
    ans = (ans + C * v) % mod
print(ans)
0