結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-06-11 22:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,696 KB
最終ジャッジ日時 2024-05-08 18:43:52
合計ジャッジ時間 16,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 41 ms
52,992 KB
testcase_13 AC 186 ms
81,836 KB
testcase_14 AC 349 ms
95,312 KB
testcase_15 AC 212 ms
83,752 KB
testcase_16 AC 218 ms
84,012 KB
testcase_17 AC 183 ms
81,964 KB
testcase_18 AC 270 ms
88,492 KB
testcase_19 AC 250 ms
87,076 KB
testcase_20 AC 295 ms
90,372 KB
testcase_21 AC 95 ms
76,544 KB
testcase_22 AC 274 ms
88,492 KB
testcase_23 AC 237 ms
85,544 KB
testcase_24 AC 118 ms
78,208 KB
testcase_25 AC 354 ms
95,696 KB
testcase_26 AC 368 ms
98,260 KB
testcase_27 AC 213 ms
83,760 KB
testcase_28 AC 374 ms
98,260 KB
testcase_29 AC 369 ms
98,384 KB
testcase_30 AC 366 ms
98,268 KB
testcase_31 AC 369 ms
98,484 KB
testcase_32 AC 365 ms
98,260 KB
testcase_33 AC 371 ms
98,136 KB
testcase_34 AC 368 ms
98,388 KB
testcase_35 AC 369 ms
98,132 KB
testcase_36 AC 366 ms
98,392 KB
testcase_37 AC 368 ms
98,132 KB
testcase_38 AC 366 ms
98,060 KB
testcase_39 AC 370 ms
98,260 KB
testcase_40 AC 370 ms
98,264 KB
testcase_41 AC 371 ms
98,140 KB
testcase_42 AC 367 ms
98,172 KB
testcase_43 AC 353 ms
98,788 KB
testcase_44 AC 340 ms
98,668 KB
testcase_45 AC 354 ms
98,840 KB
testcase_46 AC 320 ms
99,044 KB
testcase_47 AC 353 ms
99,008 KB
testcase_48 AC 409 ms
99,696 KB
testcase_49 AC 368 ms
98,128 KB
testcase_50 AC 36 ms
51,712 KB
testcase_51 AC 36 ms
51,840 KB
testcase_52 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
nod=[]
mod=998244353
sumt=0
for _ in range(n):
    t,v=map(int,input().split())
    sumt+=t
    sumt%=mod
    nod.append((t,v))
s=1
ans=0
rev2=pow(2,mod-2,mod)
rev6=pow(6,mod-2,mod)
def f1(x):

    return (x*(x+1)%mod*rev2)%mod
def f2(x):

    return (x*(x+1)%mod*(2*x+1)*rev6)%mod
def f3(x):

    return (f1(x)**2)%mod
n=sumt%mod
for t,v in nod:
    g=s+t-1
    g%=mod
    subans=0
    subans+=n*(f2(g)-f2(s-1))
    subans+=-(f3(g)-f3(s-1))
    subans+=(n+1)*(f1(g)-f1(s-1))
    subans*=v*rev2
    ans+=subans
    ans%=mod
    s+=t
    s%=mod


print(ans%mod)


0