結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー vwxyzvwxyz
提出日時 2024-07-17 07:27:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,033 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-17 07:28:21
合計ジャッジ時間 20,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 35 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 37 ms
10,624 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 806 ms
10,752 KB
testcase_08 AC 1,015 ms
10,624 KB
testcase_09 AC 878 ms
10,624 KB
testcase_10 AC 787 ms
10,752 KB
testcase_11 AC 821 ms
10,624 KB
testcase_12 AC 449 ms
10,624 KB
testcase_13 AC 483 ms
10,752 KB
testcase_14 AC 453 ms
10,624 KB
testcase_15 AC 941 ms
10,752 KB
testcase_16 AC 1,033 ms
10,624 KB
testcase_17 AC 958 ms
10,752 KB
testcase_18 AC 930 ms
10,752 KB
testcase_19 AC 939 ms
10,752 KB
testcase_20 AC 921 ms
10,624 KB
testcase_21 AC 920 ms
10,624 KB
testcase_22 AC 906 ms
10,752 KB
testcase_23 AC 394 ms
10,624 KB
testcase_24 AC 470 ms
10,752 KB
testcase_25 AC 523 ms
10,624 KB
testcase_26 AC 231 ms
10,624 KB
testcase_27 AC 101 ms
10,624 KB
testcase_28 AC 785 ms
10,624 KB
testcase_29 AC 738 ms
10,624 KB
testcase_30 AC 120 ms
10,880 KB
testcase_31 AC 224 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())
def cnt(x,y):
    retu=(x+1)**2
    if x-y>0:
        retu-=(x-y)*(x-y+1)//2
    if x+y-(W-1)>0:
        retu-=(x+y-(W-1))*(x+y-(W-1)+1)//2
    return retu
ans=0
mod=998244353
for k in range(K):
    x,y,v=map(int,input().split())
    x-=1;y-=1
    ans+=v*cnt(x,y)
ans%=mod
print(ans)
0