結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー timitimi
提出日時 2023-03-07 21:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-18 02:14:31
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 172 ms
76,160 KB
testcase_08 AC 181 ms
76,928 KB
testcase_09 AC 181 ms
75,904 KB
testcase_10 AC 175 ms
76,416 KB
testcase_11 AC 197 ms
77,696 KB
testcase_12 AC 135 ms
76,160 KB
testcase_13 AC 124 ms
76,032 KB
testcase_14 AC 138 ms
76,288 KB
testcase_15 AC 167 ms
75,824 KB
testcase_16 AC 171 ms
76,252 KB
testcase_17 AC 173 ms
75,900 KB
testcase_18 AC 171 ms
76,056 KB
testcase_19 AC 176 ms
76,160 KB
testcase_20 AC 164 ms
76,732 KB
testcase_21 AC 169 ms
76,104 KB
testcase_22 AC 172 ms
76,276 KB
testcase_23 AC 112 ms
76,032 KB
testcase_24 AC 129 ms
76,216 KB
testcase_25 AC 136 ms
75,776 KB
testcase_26 AC 96 ms
76,280 KB
testcase_27 AC 78 ms
76,032 KB
testcase_28 AC 144 ms
76,160 KB
testcase_29 AC 144 ms
76,216 KB
testcase_30 AC 76 ms
76,032 KB
testcase_31 AC 84 ms
76,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N=map(int, input().split())
ans=0
mod=998244353
for i in range(N):
  h,w,p=map(int, input().split())
  c=(1+2*h-1)*h//2
  l=max(h-w,0)
  r=max(h-(W-w+1),0)
  ll,rr=l*(l+1)//2,r*(r+1)//2
  ans+=(c-ll-rr)*p
  ans%=mod
print(ans)
0