結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 42 ms
52,608 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 262 ms
82,088 KB
testcase_14 AC 535 ms
95,572 KB
testcase_15 AC 319 ms
84,012 KB
testcase_16 AC 310 ms
83,884 KB
testcase_17 AC 249 ms
81,968 KB
testcase_18 AC 407 ms
89,000 KB
testcase_19 AC 385 ms
87,080 KB
testcase_20 AC 446 ms
90,540 KB
testcase_21 AC 104 ms
77,056 KB
testcase_22 AC 404 ms
88,876 KB
testcase_23 AC 348 ms
85,680 KB
testcase_24 AC 141 ms
78,336 KB
testcase_25 AC 558 ms
95,696 KB
testcase_26 AC 574 ms
98,644 KB
testcase_27 AC 326 ms
83,884 KB
testcase_28 AC 594 ms
98,516 KB
testcase_29 AC 589 ms
98,260 KB
testcase_30 AC 579 ms
98,260 KB
testcase_31 AC 579 ms
98,268 KB
testcase_32 AC 589 ms
98,860 KB
testcase_33 AC 578 ms
98,260 KB
testcase_34 AC 578 ms
98,320 KB
testcase_35 AC 576 ms
98,252 KB
testcase_36 AC 582 ms
98,260 KB
testcase_37 AC 576 ms
98,388 KB
testcase_38 AC 589 ms
98,772 KB
testcase_39 AC 574 ms
98,384 KB
testcase_40 AC 574 ms
98,260 KB
testcase_41 AC 576 ms
98,516 KB
testcase_42 AC 577 ms
98,516 KB
testcase_43 AC 553 ms
98,976 KB
testcase_44 AC 540 ms
98,800 KB
testcase_45 AC 555 ms
99,604 KB
testcase_46 AC 519 ms
99,692 KB
testcase_47 AC 555 ms
99,248 KB
testcase_48 AC 610 ms
99,744 KB
testcase_49 AC 566 ms
98,256 KB
testcase_50 AC 40 ms
52,224 KB
testcase_51 AC 39 ms
51,712 KB
testcase_52 AC 39 ms
52,096 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)
def f1(x):
    x%=mod
    return (x*(x+1)//2)%mod
def f2(x):
    x%=mod
    return (x*(x+1)*(2*x+1)//6)%mod
def f3(x):
    x%=mod
    return (f1(x)**2)%mod
n=sumt%mod
for t,v in nod:
    g=s+t-1
    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


print(ans%mod)


0