結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,184 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 43 ms
52,224 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 41 ms
52,736 KB
testcase_13 AC 182 ms
82,088 KB
testcase_14 AC 340 ms
94,936 KB
testcase_15 AC 211 ms
83,636 KB
testcase_16 AC 210 ms
83,756 KB
testcase_17 AC 175 ms
81,572 KB
testcase_18 AC 262 ms
88,748 KB
testcase_19 AC 247 ms
87,084 KB
testcase_20 AC 289 ms
90,536 KB
testcase_21 AC 88 ms
76,412 KB
testcase_22 AC 266 ms
88,484 KB
testcase_23 AC 232 ms
85,932 KB
testcase_24 AC 110 ms
78,112 KB
testcase_25 AC 350 ms
95,572 KB
testcase_26 AC 366 ms
97,964 KB
testcase_27 AC 212 ms
83,760 KB
testcase_28 AC 366 ms
98,520 KB
testcase_29 AC 374 ms
98,516 KB
testcase_30 AC 372 ms
98,388 KB
testcase_31 AC 370 ms
98,520 KB
testcase_32 AC 365 ms
98,108 KB
testcase_33 AC 364 ms
98,008 KB
testcase_34 AC 363 ms
98,024 KB
testcase_35 AC 366 ms
98,516 KB
testcase_36 AC 366 ms
98,652 KB
testcase_37 AC 363 ms
98,104 KB
testcase_38 AC 364 ms
98,256 KB
testcase_39 AC 365 ms
98,012 KB
testcase_40 AC 363 ms
98,256 KB
testcase_41 AC 369 ms
98,136 KB
testcase_42 AC 366 ms
98,132 KB
testcase_43 AC 349 ms
98,656 KB
testcase_44 AC 341 ms
98,592 KB
testcase_45 AC 354 ms
98,964 KB
testcase_46 AC 328 ms
99,024 KB
testcase_47 AC 366 ms
99,004 KB
testcase_48 AC 406 ms
99,104 KB
testcase_49 AC 365 ms
98,260 KB
testcase_50 AC 40 ms
52,352 KB
testcase_51 AC 39 ms
52,096 KB
testcase_52 AC 40 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