結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー tktk_snsntktk_snsn
提出日時 2021-06-11 22:19:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 683 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-12-15 00:25:51
合計ジャッジ時間 65,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 32 ms
10,624 KB
testcase_13 AC 726 ms
25,088 KB
testcase_14 AC 1,804 ms
47,360 KB
testcase_15 AC 940 ms
29,568 KB
testcase_16 AC 927 ms
29,184 KB
testcase_17 AC 680 ms
24,320 KB
testcase_18 AC 1,307 ms
36,864 KB
testcase_19 AC 1,212 ms
34,816 KB
testcase_20 AC 1,474 ms
40,448 KB
testcase_21 AC 80 ms
11,648 KB
testcase_22 AC 1,366 ms
36,736 KB
testcase_23 AC 1,078 ms
32,256 KB
testcase_24 AC 244 ms
14,976 KB
testcase_25 AC 1,899 ms
49,024 KB
testcase_26 AC 1,965 ms
50,688 KB
testcase_27 AC 940 ms
29,440 KB
testcase_28 AC 1,961 ms
50,816 KB
testcase_29 AC 1,956 ms
50,560 KB
testcase_30 AC 1,951 ms
50,688 KB
testcase_31 AC 1,958 ms
50,560 KB
testcase_32 AC 1,956 ms
50,816 KB
testcase_33 AC 1,961 ms
50,688 KB
testcase_34 TLE -
testcase_35 AC 1,951 ms
50,688 KB
testcase_36 AC 1,967 ms
50,688 KB
testcase_37 AC 1,960 ms
50,688 KB
testcase_38 AC 1,952 ms
50,560 KB
testcase_39 AC 1,982 ms
50,560 KB
testcase_40 AC 1,945 ms
50,560 KB
testcase_41 AC 1,969 ms
50,560 KB
testcase_42 AC 1,963 ms
50,688 KB
testcase_43 AC 1,941 ms
41,344 KB
testcase_44 AC 1,921 ms
41,472 KB
testcase_45 AC 1,907 ms
41,472 KB
testcase_46 AC 1,913 ms
41,472 KB
testcase_47 AC 1,883 ms
41,216 KB
testcase_48 AC 1,990 ms
50,688 KB
testcase_49 AC 1,911 ms
50,560 KB
testcase_50 AC 30 ms
10,624 KB
testcase_51 AC 30 ms
10,496 KB
testcase_52 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

mod = 998244353
div2 = pow(2, mod-2, mod)
div4 = pow(4, mod-2, mod)
div6 = pow(6, mod-2, mod)

N = int(input())
TV = []
total = 0
for _ in range(N):
    t, v = map(int, input().split())
    t %= mod
    total += t
    total %= mod
    TV.append((t, v))


def F(n):
    x = (total + 1) * n * (n + 1) % mod
    y = total * n * (n + 1) * (2 * n + 1) % mod
    z = n * n * (n + 1) * (n + 1) % mod
    return (x * div2 % mod + y * div6 % mod - z * div4 % mod) * div2 % mod


ans = 0
cnt = 0
for t, v in TV:
    x = F(cnt + t) - F(cnt)
    ans += v * x % mod
    ans %= mod
    cnt += t
    cnt %= mod
print(ans)
0