結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー titiatitia
提出日時 2023-03-06 03:19:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,001 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-18 01:48:01
合計ジャッジ時間 19,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 35 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 891 ms
10,496 KB
testcase_08 AC 985 ms
10,624 KB
testcase_09 AC 956 ms
10,624 KB
testcase_10 AC 860 ms
10,624 KB
testcase_11 AC 868 ms
10,496 KB
testcase_12 AC 497 ms
10,496 KB
testcase_13 AC 478 ms
10,496 KB
testcase_14 AC 482 ms
10,496 KB
testcase_15 AC 990 ms
10,496 KB
testcase_16 AC 1,001 ms
10,624 KB
testcase_17 AC 945 ms
10,496 KB
testcase_18 AC 958 ms
10,496 KB
testcase_19 AC 948 ms
10,624 KB
testcase_20 AC 991 ms
10,624 KB
testcase_21 AC 982 ms
10,624 KB
testcase_22 AC 975 ms
10,624 KB
testcase_23 AC 388 ms
10,496 KB
testcase_24 AC 496 ms
10,624 KB
testcase_25 AC 577 ms
10,496 KB
testcase_26 AC 244 ms
10,624 KB
testcase_27 AC 96 ms
10,624 KB
testcase_28 AC 790 ms
10,496 KB
testcase_29 AC 754 ms
10,624 KB
testcase_30 AC 126 ms
10,496 KB
testcase_31 AC 230 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=0
for i in range(K):
    x,y,v=map(int,input().split())

    ANS+=x*v

    r=W-y
    if r<x-1:
        ANS+=(r*x-r*(r+1)//2)*v
    else:
        ANS+=((x-1)*x//2)*v
     
    l=y-1
    if l<x-1:
        ANS+=(l*x-l*(l+1)//2)*v
    else:
        ANS+=((x-1)*x//2)*v

    ANS%=mod

print(ANS)
0