結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 39 ms
52,864 KB
testcase_13 AC 203 ms
87,808 KB
testcase_14 AC 401 ms
105,120 KB
testcase_15 AC 236 ms
91,100 KB
testcase_16 AC 239 ms
90,624 KB
testcase_17 AC 196 ms
87,064 KB
testcase_18 AC 313 ms
96,768 KB
testcase_19 AC 280 ms
95,548 KB
testcase_20 AC 330 ms
99,224 KB
testcase_21 AC 79 ms
77,340 KB
testcase_22 AC 311 ms
96,640 KB
testcase_23 AC 262 ms
93,224 KB
testcase_24 AC 110 ms
79,616 KB
testcase_25 AC 425 ms
106,364 KB
testcase_26 AC 428 ms
107,844 KB
testcase_27 AC 237 ms
91,308 KB
testcase_28 AC 440 ms
107,536 KB
testcase_29 AC 436 ms
107,384 KB
testcase_30 AC 430 ms
107,784 KB
testcase_31 AC 417 ms
107,468 KB
testcase_32 AC 446 ms
107,252 KB
testcase_33 AC 427 ms
107,572 KB
testcase_34 AC 434 ms
107,584 KB
testcase_35 AC 427 ms
107,720 KB
testcase_36 AC 428 ms
107,444 KB
testcase_37 AC 418 ms
107,456 KB
testcase_38 AC 429 ms
107,468 KB
testcase_39 AC 429 ms
107,724 KB
testcase_40 AC 414 ms
107,764 KB
testcase_41 AC 424 ms
107,660 KB
testcase_42 AC 422 ms
107,448 KB
testcase_43 AC 413 ms
108,276 KB
testcase_44 AC 412 ms
108,340 KB
testcase_45 AC 413 ms
108,252 KB
testcase_46 AC 403 ms
107,872 KB
testcase_47 AC 412 ms
108,224 KB
testcase_48 AC 463 ms
107,748 KB
testcase_49 AC 407 ms
107,532 KB
testcase_50 AC 35 ms
52,660 KB
testcase_51 AC 35 ms
52,780 KB
testcase_52 AC 36 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################


n = ni()
s = 0
ans = 0
m = 998244353
m24 = pow(24,m-2,m)
tv = [na() for i in range(n)]
N=0
for i in range(n):
    N+=tv[i][0]
def g(x,y):
    return x*y%m
def f(x):
    return g(g(g(g(x,x-1),x+1),4*N-3*x+6),m24)

for i in range(n):
    #print((f(s+tv[i][0]+1)-f(s))%m)
    ans+=g(tv[i][1],(f(s+tv[i][0]+1)-f(s+1))%m)%m
    ans%=m
    s+=tv[i][0]
    s%=m
    #print(s)

print(ans)
0