結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー mkawa2mkawa2
提出日時 2021-06-11 22:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 112,460 KB
最終ジャッジ日時 2024-05-08 18:52:07
合計ジャッジ時間 19,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,548 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 42 ms
52,992 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 41 ms
52,864 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 41 ms
53,120 KB
testcase_13 AC 210 ms
83,356 KB
testcase_14 AC 443 ms
103,528 KB
testcase_15 AC 255 ms
85,704 KB
testcase_16 AC 250 ms
85,632 KB
testcase_17 AC 202 ms
82,432 KB
testcase_18 AC 334 ms
91,272 KB
testcase_19 AC 314 ms
90,112 KB
testcase_20 AC 366 ms
95,236 KB
testcase_21 AC 76 ms
76,516 KB
testcase_22 AC 327 ms
91,264 KB
testcase_23 AC 280 ms
87,916 KB
testcase_24 AC 111 ms
79,160 KB
testcase_25 AC 454 ms
103,804 KB
testcase_26 AC 478 ms
108,664 KB
testcase_27 AC 252 ms
85,120 KB
testcase_28 AC 474 ms
109,048 KB
testcase_29 AC 473 ms
108,580 KB
testcase_30 AC 482 ms
109,048 KB
testcase_31 AC 474 ms
108,584 KB
testcase_32 AC 472 ms
108,664 KB
testcase_33 AC 475 ms
109,048 KB
testcase_34 AC 472 ms
108,676 KB
testcase_35 AC 479 ms
109,048 KB
testcase_36 AC 468 ms
109,048 KB
testcase_37 AC 473 ms
108,968 KB
testcase_38 AC 476 ms
108,676 KB
testcase_39 AC 479 ms
108,936 KB
testcase_40 AC 480 ms
108,932 KB
testcase_41 AC 475 ms
109,188 KB
testcase_42 AC 474 ms
108,544 KB
testcase_43 AC 480 ms
109,116 KB
testcase_44 AC 477 ms
108,984 KB
testcase_45 AC 482 ms
108,856 KB
testcase_46 AC 462 ms
110,304 KB
testcase_47 AC 478 ms
108,864 KB
testcase_48 AC 518 ms
112,460 KB
testcase_49 AC 475 ms
108,944 KB
testcase_50 AC 39 ms
52,044 KB
testcase_51 AC 39 ms
51,968 KB
testcase_52 AC 38 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

inv = pow(24, md-2, md)

def coef(s, t):
    res = (s-t-1)*(3*(pow(s, 3, md)+pow(s, 2, md)*(t+3)+s*(pow(t, 2, md)+4*t+2)+t*(pow(t, 2, md)+5*t+6))-4*tn*(
            pow(s, 2, md)+s*(t+4)+pow(t, 2, md)+5*t+6))*inv
    return res%md

n = II()
tt, vv = [], []
for _ in range(n):
    t, v = LI()
    tt.append(t%md)
    vv.append(v)

l = r = 0
tn = sum(tt)%md
ans = 0
for t, v in zip(tt, vv):
    r = l+t-1
    ans += coef(l, r)*v
    ans %= md
    l = r+1

print(ans)
0