結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー ニックネームニックネーム
提出日時 2023-02-24 22:42:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,182 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-13 05:50:34
合計ジャッジ時間 23,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 1,079 ms
10,752 KB
testcase_08 AC 1,156 ms
10,752 KB
testcase_09 AC 1,111 ms
10,624 KB
testcase_10 AC 1,077 ms
10,752 KB
testcase_11 AC 1,059 ms
10,624 KB
testcase_12 AC 574 ms
10,752 KB
testcase_13 AC 576 ms
10,752 KB
testcase_14 AC 579 ms
10,752 KB
testcase_15 AC 1,141 ms
10,752 KB
testcase_16 AC 1,182 ms
10,752 KB
testcase_17 AC 1,164 ms
10,752 KB
testcase_18 AC 1,167 ms
10,624 KB
testcase_19 AC 1,157 ms
10,752 KB
testcase_20 AC 1,170 ms
10,752 KB
testcase_21 AC 1,150 ms
10,624 KB
testcase_22 AC 1,154 ms
10,752 KB
testcase_23 AC 468 ms
10,752 KB
testcase_24 AC 597 ms
10,752 KB
testcase_25 AC 696 ms
10,752 KB
testcase_26 AC 284 ms
10,752 KB
testcase_27 AC 114 ms
10,752 KB
testcase_28 AC 964 ms
10,624 KB
testcase_29 AC 896 ms
10,752 KB
testcase_30 AC 149 ms
10,752 KB
testcase_31 AC 264 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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