結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー 👑 KazunKazun
提出日時 2021-03-20 04:14:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 85,864 KB
最終ジャッジ日時 2024-05-08 14:37:25
合計ジャッジ時間 10,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 37 ms
51,940 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 106 ms
79,388 KB
testcase_14 AC 177 ms
84,480 KB
testcase_15 AC 121 ms
80,512 KB
testcase_16 AC 119 ms
80,768 KB
testcase_17 AC 101 ms
78,848 KB
testcase_18 AC 144 ms
82,048 KB
testcase_19 AC 137 ms
81,920 KB
testcase_20 AC 154 ms
83,196 KB
testcase_21 AC 62 ms
69,632 KB
testcase_22 AC 142 ms
81,792 KB
testcase_23 AC 125 ms
81,024 KB
testcase_24 AC 77 ms
76,804 KB
testcase_25 AC 180 ms
84,848 KB
testcase_26 AC 189 ms
85,248 KB
testcase_27 AC 117 ms
80,192 KB
testcase_28 AC 183 ms
85,308 KB
testcase_29 AC 184 ms
85,248 KB
testcase_30 AC 183 ms
85,444 KB
testcase_31 AC 186 ms
85,784 KB
testcase_32 AC 189 ms
85,104 KB
testcase_33 AC 192 ms
85,376 KB
testcase_34 AC 188 ms
85,864 KB
testcase_35 AC 182 ms
85,248 KB
testcase_36 AC 185 ms
85,476 KB
testcase_37 AC 183 ms
85,376 KB
testcase_38 AC 183 ms
85,724 KB
testcase_39 AC 181 ms
85,504 KB
testcase_40 AC 187 ms
85,156 KB
testcase_41 AC 184 ms
85,248 KB
testcase_42 AC 184 ms
85,248 KB
testcase_43 AC 170 ms
85,688 KB
testcase_44 AC 174 ms
85,632 KB
testcase_45 AC 178 ms
85,584 KB
testcase_46 AC 169 ms
85,120 KB
testcase_47 AC 175 ms
85,308 KB
testcase_48 AC 239 ms
85,376 KB
testcase_49 AC 182 ms
85,376 KB
testcase_50 AC 36 ms
51,968 KB
testcase_51 AC 36 ms
52,480 KB
testcase_52 AC 36 ms
51,712 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)

def S(b):
    x=b

    x*=b+1
    x%=Mod

    x*=b+2
    x%=Mod

    x*=4*M+3-3*b
    return x%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