結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー lloyzlloyz
提出日時 2024-01-02 14:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 77,012 KB
最終ジャッジ日時 2024-09-27 17:46:08
合計ジャッジ時間 7,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,756 KB
testcase_01 AC 35 ms
51,868 KB
testcase_02 AC 37 ms
51,880 KB
testcase_03 AC 35 ms
53,316 KB
testcase_04 AC 36 ms
52,208 KB
testcase_05 AC 35 ms
52,560 KB
testcase_06 AC 33 ms
53,036 KB
testcase_07 AC 175 ms
76,596 KB
testcase_08 AC 190 ms
76,492 KB
testcase_09 AC 174 ms
76,324 KB
testcase_10 AC 182 ms
76,408 KB
testcase_11 AC 202 ms
77,012 KB
testcase_12 AC 131 ms
76,436 KB
testcase_13 AC 116 ms
76,052 KB
testcase_14 AC 132 ms
76,728 KB
testcase_15 AC 171 ms
76,252 KB
testcase_16 AC 169 ms
76,324 KB
testcase_17 AC 175 ms
75,808 KB
testcase_18 AC 171 ms
76,192 KB
testcase_19 AC 167 ms
76,168 KB
testcase_20 AC 167 ms
76,236 KB
testcase_21 AC 171 ms
76,100 KB
testcase_22 AC 170 ms
76,356 KB
testcase_23 AC 109 ms
76,240 KB
testcase_24 AC 119 ms
76,328 KB
testcase_25 AC 124 ms
76,292 KB
testcase_26 AC 92 ms
76,324 KB
testcase_27 AC 80 ms
76,216 KB
testcase_28 AC 150 ms
76,496 KB
testcase_29 AC 145 ms
76,456 KB
testcase_30 AC 75 ms
76,320 KB
testcase_31 AC 87 ms
76,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, k = map(int, input().split())
mod = 998244353
ans = 0
inv2 = pow(2, mod - 2, mod)
for _ in range(k):
    x, y, v = map(int, input().split())
    cnt = pow(x, 2, mod)
    if y < x:
        d = x - y
        cnt -= d * (d + 1) % mod * inv2 % mod
        cnt %= mod
    if (w - y) < x - 1:
        d = x - (w - y) - 1
        cnt -= d * (d + 1) % mod * inv2 % mod
        cnt %= mod
    ans += v * cnt % mod
    ans %= mod
print(ans)
0