結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー KazunKazun
提出日時 2023-02-24 22:11:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-09-13 05:34:50
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,964 KB
testcase_01 AC 38 ms
53,496 KB
testcase_02 AC 38 ms
52,772 KB
testcase_03 AC 38 ms
53,148 KB
testcase_04 AC 38 ms
52,000 KB
testcase_05 AC 38 ms
53,868 KB
testcase_06 AC 39 ms
52,748 KB
testcase_07 AC 108 ms
75,796 KB
testcase_08 AC 111 ms
75,452 KB
testcase_09 AC 133 ms
75,304 KB
testcase_10 AC 109 ms
75,800 KB
testcase_11 AC 107 ms
75,796 KB
testcase_12 AC 88 ms
75,720 KB
testcase_13 AC 87 ms
75,724 KB
testcase_14 AC 87 ms
75,768 KB
testcase_15 AC 128 ms
75,600 KB
testcase_16 AC 130 ms
75,536 KB
testcase_17 AC 128 ms
75,472 KB
testcase_18 AC 128 ms
75,452 KB
testcase_19 AC 129 ms
75,412 KB
testcase_20 AC 131 ms
75,364 KB
testcase_21 AC 130 ms
75,448 KB
testcase_22 AC 129 ms
75,932 KB
testcase_23 AC 86 ms
76,184 KB
testcase_24 AC 94 ms
75,596 KB
testcase_25 AC 97 ms
76,360 KB
testcase_26 AC 82 ms
75,936 KB
testcase_27 AC 69 ms
76,316 KB
testcase_28 AC 113 ms
75,640 KB
testcase_29 AC 116 ms
76,112 KB
testcase_30 AC 66 ms
75,928 KB
testcase_31 AC 75 ms
75,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b):
    if a>b:
        return 0
    n=b-a+1
    return (n*(b+a))//2

def solve():
    H,W,K=map(int,input().split())

    Ans=0; Mod=998244353
    for k in range(K):
        x,y,v=map(int,input().split())

        p=y-1; q=W-y
        area=x*W-(f(max(1,p-(x-1)),p)+f(max(1,q-(x-1)),q))%Mod
        Ans+=area*v%Mod

    return Ans%Mod
#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

print(solve())
0