結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー ああいいああいい
提出日時 2023-02-25 16:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-09-13 13:00:25
合計ジャッジ時間 6,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,456 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 40 ms
52,284 KB
testcase_03 AC 37 ms
52,884 KB
testcase_04 AC 36 ms
52,920 KB
testcase_05 AC 37 ms
53,256 KB
testcase_06 AC 38 ms
52,628 KB
testcase_07 AC 187 ms
76,588 KB
testcase_08 AC 192 ms
76,512 KB
testcase_09 AC 183 ms
76,524 KB
testcase_10 AC 187 ms
76,392 KB
testcase_11 AC 198 ms
76,760 KB
testcase_12 AC 125 ms
75,868 KB
testcase_13 AC 124 ms
76,076 KB
testcase_14 AC 124 ms
76,124 KB
testcase_15 AC 183 ms
76,412 KB
testcase_16 AC 184 ms
76,432 KB
testcase_17 AC 184 ms
76,032 KB
testcase_18 AC 184 ms
76,092 KB
testcase_19 AC 184 ms
76,200 KB
testcase_20 AC 184 ms
76,628 KB
testcase_21 AC 184 ms
76,032 KB
testcase_22 AC 183 ms
76,232 KB
testcase_23 AC 114 ms
76,236 KB
testcase_24 AC 128 ms
76,044 KB
testcase_25 AC 134 ms
76,044 KB
testcase_26 AC 103 ms
76,432 KB
testcase_27 AC 83 ms
76,376 KB
testcase_28 AC 158 ms
76,448 KB
testcase_29 AC 160 ms
75,960 KB
testcase_30 AC 88 ms
75,904 KB
testcase_31 AC 97 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K = map(int,input().split())
P = 998244353

def calc(x,y):
    ans = 0
    if x >= y:
        ans += (y * y + y) // 2
        ans += y * (x - y)
    else:
        ans += (x * x + x) // 2
    return ans
ans = 0
for _ in range(K):
    x,y,v = map(int,input().split())
    tmp = 0
    tmp += calc(x,y) + calc(x,W - y + 1) - x
    ans += tmp * v % P
    ans %= P
print(ans)
0