結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー 👑 rin204rin204
提出日時 2022-01-26 23:59:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 917 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-06-06 07:39:51
合計ジャッジ時間 8,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,600 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 40 ms
52,992 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 41 ms
53,504 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 44 ms
54,784 KB
testcase_13 AC 1,207 ms
88,192 KB
testcase_14 TLE -
testcase_15 AC 1,558 ms
91,520 KB
testcase_16 AC 1,524 ms
90,880 KB
testcase_17 AC 1,161 ms
87,808 KB
testcase_18 TLE -
testcase_19 AC 1,964 ms
95,232 KB
testcase_20 TLE -
testcase_21 AC 172 ms
77,568 KB
testcase_22 TLE -
testcase_23 AC 1,811 ms
93,696 KB
testcase_24 AC 421 ms
80,256 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
"""
n = 6
A = [3, 3, 2, 1, 1, 1]
ans = 0
for i, a in enumerate(A):
    ans += a * (n - i) * (i + 1) * (i + 2) // 2
print(ans)
"""

n = int(input())
tv = [list(map(int, input().split())) for _ in range(n)]
n = sum(t for t, _ in tv) % MOD
inv2 = pow(2, MOD - 2, MOD)
inv6 = pow(6, MOD - 2, MOD)

def f(x):
    if x == -1:
        return 0
    ret = 0
    
    three = x * (x + 1) * inv2
    three = pow(three, 2, MOD)
    ret -= three
    ret %= MOD
    
    two = x * (x + 1) * (2 * x + 1) * inv6
    ret += (n - 3) * two
    ret %= MOD
    
    one = x * (x + 1) * inv2
    ret += (3 * n - 2) * one
    ret %= MOD
    
    ret += 2 * n * (x + 1)
    
    ret *= inv2
    return ret % MOD
    
    for i in range(x + 1):
        ret += (n - i) * (i + 1) * (i + 2) // 2
    return ret
    
    
ans = 0
l = 0
for t, v in tv:
    ans += v * (f(l + t - 1) - f(l - 1))
    ans %= MOD
    l += t
print(ans)
0