結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー dangodango
提出日時 2023-06-25 12:59:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 74,232 KB
最終ジャッジ日時 2024-07-02 13:01:31
合計ジャッジ時間 2,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,068 KB
testcase_01 AC 32 ms
52,880 KB
testcase_02 AC 33 ms
52,772 KB
testcase_03 AC 33 ms
52,020 KB
testcase_04 AC 36 ms
53,840 KB
testcase_05 AC 32 ms
52,504 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 69 ms
72,608 KB
testcase_08 AC 68 ms
73,216 KB
testcase_09 AC 65 ms
72,984 KB
testcase_10 AC 34 ms
53,772 KB
testcase_11 AC 35 ms
52,404 KB
testcase_12 AC 69 ms
72,636 KB
testcase_13 AC 70 ms
74,232 KB
testcase_14 AC 69 ms
73,092 KB
testcase_15 AC 36 ms
52,292 KB
testcase_16 AC 34 ms
52,336 KB
testcase_17 AC 33 ms
52,260 KB
testcase_18 AC 35 ms
52,860 KB
testcase_19 AC 35 ms
52,304 KB
testcase_20 AC 35 ms
52,696 KB
testcase_21 AC 46 ms
56,764 KB
testcase_22 AC 37 ms
52,268 KB
testcase_23 AC 46 ms
62,896 KB
testcase_24 AC 35 ms
54,020 KB
testcase_25 AC 38 ms
53,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, k = map(int, input().split())
z = 0
for _ in range(k):
    x, y, v = map(int, input().split())
    z += v * (x * x - max(0, (x - y)) * (x - y + 1) // 2 - max(0, (x - (w + 1 - y))) * (x - (w + 1 - y) + 1) // 2)
print(z % 998244353)
0