結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-12 18:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 150,784 KB
最終ジャッジ日時 2024-05-09 21:40:23
合計ジャッジ時間 23,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 229 ms
102,656 KB
testcase_14 AC 434 ms
146,560 KB
testcase_15 AC 257 ms
110,836 KB
testcase_16 AC 259 ms
110,472 KB
testcase_17 AC 217 ms
100,224 KB
testcase_18 AC 334 ms
125,924 KB
testcase_19 AC 312 ms
120,832 KB
testcase_20 AC 361 ms
132,488 KB
testcase_21 AC 93 ms
77,184 KB
testcase_22 AC 336 ms
125,440 KB
testcase_23 AC 288 ms
116,224 KB
testcase_24 AC 117 ms
82,432 KB
testcase_25 AC 400 ms
148,352 KB
testcase_26 AC 417 ms
150,272 KB
testcase_27 AC 254 ms
110,952 KB
testcase_28 AC 397 ms
150,508 KB
testcase_29 AC 433 ms
150,272 KB
testcase_30 AC 458 ms
150,292 KB
testcase_31 AC 451 ms
150,144 KB
testcase_32 AC 455 ms
150,144 KB
testcase_33 AC 453 ms
150,528 KB
testcase_34 AC 449 ms
150,272 KB
testcase_35 AC 459 ms
150,272 KB
testcase_36 AC 453 ms
150,528 KB
testcase_37 AC 457 ms
150,016 KB
testcase_38 AC 466 ms
150,144 KB
testcase_39 AC 458 ms
150,272 KB
testcase_40 AC 459 ms
150,520 KB
testcase_41 AC 452 ms
150,656 KB
testcase_42 AC 457 ms
150,528 KB
testcase_43 AC 451 ms
150,272 KB
testcase_44 AC 448 ms
150,272 KB
testcase_45 AC 453 ms
150,784 KB
testcase_46 AC 442 ms
150,016 KB
testcase_47 AC 454 ms
150,272 KB
testcase_48 AC 504 ms
150,316 KB
testcase_49 AC 459 ms
150,144 KB
testcase_50 AC 37 ms
51,968 KB
testcase_51 AC 39 ms
51,968 KB
testcase_52 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 998244353

TV = [list(map(int,input().split())) for i in range(n)]
P = [1]
Q = [TV[0][0]]
s = TV[0][0]
for t,v in TV[1:]:
    P.append(Q[-1]+1)
    Q.append(Q[-1]+t)
    P[-1] %= mod
    Q[-1] %= mod
    s += t
    s %= mod
ans = 0
def f(x):
    return x*(x+1)*(x+2)*(4*s+3-3*x)%mod
inv = pow(24,mod-2,mod)
for i in range(n):
    v,p,q = TV[i][1],P[i],Q[i]
    ans += v*(f(q)-f(p-1))
    ans %= mod
print((ans*inv)%mod)
0