結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー 👑 KazunKazun
提出日時 2021-03-20 02:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-05-08 14:36:10
合計ジャッジ時間 13,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 142 ms
79,104 KB
testcase_14 AC 249 ms
84,352 KB
testcase_15 AC 167 ms
80,512 KB
testcase_16 AC 164 ms
80,128 KB
testcase_17 AC 143 ms
79,104 KB
testcase_18 AC 205 ms
82,048 KB
testcase_19 AC 197 ms
81,664 KB
testcase_20 AC 219 ms
83,072 KB
testcase_21 AC 86 ms
71,748 KB
testcase_22 AC 211 ms
82,128 KB
testcase_23 AC 183 ms
81,024 KB
testcase_24 AC 99 ms
76,928 KB
testcase_25 AC 266 ms
84,864 KB
testcase_26 AC 277 ms
85,760 KB
testcase_27 AC 170 ms
80,256 KB
testcase_28 AC 274 ms
85,376 KB
testcase_29 AC 271 ms
85,376 KB
testcase_30 AC 274 ms
85,376 KB
testcase_31 AC 274 ms
85,504 KB
testcase_32 AC 271 ms
85,248 KB
testcase_33 AC 269 ms
85,632 KB
testcase_34 AC 268 ms
85,888 KB
testcase_35 AC 268 ms
85,376 KB
testcase_36 AC 268 ms
85,248 KB
testcase_37 AC 271 ms
85,376 KB
testcase_38 AC 278 ms
85,376 KB
testcase_39 AC 273 ms
85,248 KB
testcase_40 AC 273 ms
85,760 KB
testcase_41 AC 272 ms
85,248 KB
testcase_42 AC 271 ms
85,760 KB
testcase_43 AC 257 ms
85,632 KB
testcase_44 AC 259 ms
85,376 KB
testcase_45 AC 260 ms
85,376 KB
testcase_46 AC 255 ms
85,120 KB
testcase_47 AC 263 ms
85,760 KB
testcase_48 AC 313 ms
85,504 KB
testcase_49 AC 271 ms
85,504 KB
testcase_50 AC 44 ms
51,968 KB
testcase_51 AC 42 ms
51,712 KB
testcase_52 AC 43 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N=int(input())

T=[0]*N
V=[0]*N
Mod=998244353
for i in range(N):
    T[i],V[i]=map(int,input().split())

P=[0]*N
Q=[0]*N

P[0]=1
Q[0]=T[0]

for i in range(1,N):
    P[i]=Q[i-1]+1
    Q[i]=P[i]+T[i]-1

    P[i]%=Mod
    Q[i]%=Mod

M=sum(T)%Mod

twenty_four_inv=pow(24,Mod-2,Mod)
S=lambda b:b*(b+1)*(b+2)*(4*M+3-3*b)%Mod

X=0
for v,p,q in zip(V,P,Q):
    X+=v*(S(q)-S(p-1))
    X%=Mod

print((twenty_four_inv*X)%Mod)
0