結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 44 ms
52,480 KB
testcase_10 AC 43 ms
52,096 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 261 ms
82,084 KB
testcase_14 AC 551 ms
95,188 KB
testcase_15 AC 331 ms
84,396 KB
testcase_16 AC 319 ms
84,012 KB
testcase_17 AC 249 ms
81,576 KB
testcase_18 AC 401 ms
88,744 KB
testcase_19 AC 387 ms
86,928 KB
testcase_20 AC 462 ms
90,796 KB
testcase_21 AC 108 ms
76,672 KB
testcase_22 AC 412 ms
88,876 KB
testcase_23 AC 347 ms
85,304 KB
testcase_24 AC 150 ms
78,464 KB
testcase_25 AC 578 ms
95,444 KB
testcase_26 AC 594 ms
98,392 KB
testcase_27 AC 321 ms
83,752 KB
testcase_28 AC 586 ms
98,260 KB
testcase_29 AC 580 ms
98,512 KB
testcase_30 AC 587 ms
98,648 KB
testcase_31 AC 594 ms
98,392 KB
testcase_32 AC 588 ms
98,396 KB
testcase_33 AC 605 ms
98,648 KB
testcase_34 AC 597 ms
98,768 KB
testcase_35 AC 577 ms
98,260 KB
testcase_36 AC 596 ms
98,260 KB
testcase_37 AC 568 ms
98,380 KB
testcase_38 AC 568 ms
98,900 KB
testcase_39 AC 580 ms
98,260 KB
testcase_40 AC 587 ms
98,384 KB
testcase_41 AC 571 ms
98,392 KB
testcase_42 AC 589 ms
98,512 KB
testcase_43 AC 551 ms
99,364 KB
testcase_44 AC 568 ms
98,664 KB
testcase_45 AC 590 ms
99,348 KB
testcase_46 AC 544 ms
99,556 KB
testcase_47 AC 576 ms
99,260 KB
testcase_48 AC 623 ms
99,872 KB
testcase_49 AC 570 ms
98,648 KB
testcase_50 AC 42 ms
51,840 KB
testcase_51 AC 43 ms
52,096 KB
testcase_52 AC 41 ms
51,584 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