結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー flygonflygon
提出日時 2023-02-24 23:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 91,892 KB
最終ジャッジ日時 2024-09-13 06:13:57
合計ジャッジ時間 6,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
74,620 KB
testcase_01 AC 53 ms
73,596 KB
testcase_02 AC 52 ms
73,416 KB
testcase_03 AC 52 ms
74,276 KB
testcase_04 AC 52 ms
73,836 KB
testcase_05 AC 52 ms
73,108 KB
testcase_06 AC 53 ms
74,344 KB
testcase_07 AC 199 ms
89,880 KB
testcase_08 AC 207 ms
91,892 KB
testcase_09 AC 196 ms
89,660 KB
testcase_10 AC 199 ms
89,544 KB
testcase_11 AC 226 ms
89,808 KB
testcase_12 AC 156 ms
89,804 KB
testcase_13 AC 138 ms
89,700 KB
testcase_14 AC 154 ms
90,076 KB
testcase_15 AC 201 ms
89,616 KB
testcase_16 AC 203 ms
90,088 KB
testcase_17 AC 204 ms
90,032 KB
testcase_18 AC 206 ms
90,028 KB
testcase_19 AC 203 ms
89,616 KB
testcase_20 AC 203 ms
89,888 KB
testcase_21 AC 205 ms
89,748 KB
testcase_22 AC 203 ms
89,732 KB
testcase_23 AC 130 ms
89,724 KB
testcase_24 AC 140 ms
89,612 KB
testcase_25 AC 151 ms
89,768 KB
testcase_26 AC 119 ms
90,016 KB
testcase_27 AC 99 ms
89,936 KB
testcase_28 AC 179 ms
89,780 KB
testcase_29 AC 175 ms
89,676 KB
testcase_30 AC 98 ms
89,652 KB
testcase_31 AC 113 ms
89,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,k = map(int,input().split())
ans = 0
mod =998244353
now = 1
xx = [0]
for i in range(2*10**5):
  xx.append(xx[-1] + now)
  now += 2
  now %= mod
for i in range(k):
  x,y,v = map(int,input().split())
  cnt = xx[x]
  lcnt = max(0,x-y)
  rcnt = max(0, x-(w-y+1))
  cnt -= lcnt*(lcnt+1)//2 + rcnt*(rcnt+1)//2
  cnt %= mod
  ans += v * cnt
  ans %= mod

print(ans)
0