結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー hir355hir355
提出日時 2021-06-11 21:48:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 81,852 KB
最終ジャッジ日時 2024-12-14 23:07:37
合計ジャッジ時間 22,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,336 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 37 ms
52,980 KB
testcase_03 AC 39 ms
52,764 KB
testcase_04 AC 40 ms
52,900 KB
testcase_05 AC 38 ms
52,376 KB
testcase_06 AC 38 ms
51,996 KB
testcase_07 AC 38 ms
51,808 KB
testcase_08 AC 39 ms
52,620 KB
testcase_09 AC 39 ms
54,212 KB
testcase_10 AC 40 ms
54,184 KB
testcase_11 AC 38 ms
53,092 KB
testcase_12 AC 40 ms
52,996 KB
testcase_13 AC 255 ms
78,312 KB
testcase_14 AC 523 ms
81,072 KB
testcase_15 AC 313 ms
79,000 KB
testcase_16 AC 306 ms
78,516 KB
testcase_17 AC 246 ms
78,200 KB
testcase_18 AC 406 ms
79,600 KB
testcase_19 AC 373 ms
79,604 KB
testcase_20 AC 431 ms
80,248 KB
testcase_21 AC 93 ms
76,480 KB
testcase_22 AC 400 ms
79,392 KB
testcase_23 AC 347 ms
79,192 KB
testcase_24 AC 131 ms
76,904 KB
testcase_25 AC 553 ms
80,980 KB
testcase_26 AC 554 ms
81,168 KB
testcase_27 AC 313 ms
78,956 KB
testcase_28 AC 576 ms
81,192 KB
testcase_29 AC 565 ms
81,456 KB
testcase_30 AC 571 ms
81,852 KB
testcase_31 AC 568 ms
81,360 KB
testcase_32 AC 559 ms
81,096 KB
testcase_33 AC 572 ms
81,844 KB
testcase_34 AC 565 ms
81,220 KB
testcase_35 AC 568 ms
81,100 KB
testcase_36 AC 570 ms
81,380 KB
testcase_37 AC 558 ms
81,384 KB
testcase_38 AC 566 ms
81,080 KB
testcase_39 AC 566 ms
81,540 KB
testcase_40 AC 562 ms
81,320 KB
testcase_41 AC 564 ms
81,048 KB
testcase_42 AC 571 ms
81,148 KB
testcase_43 AC 551 ms
81,404 KB
testcase_44 AC 543 ms
81,644 KB
testcase_45 AC 546 ms
80,916 KB
testcase_46 AC 531 ms
81,380 KB
testcase_47 AC 552 ms
81,044 KB
testcase_48 AC 585 ms
81,060 KB
testcase_49 AC 567 ms
81,312 KB
testcase_50 AC 39 ms
52,088 KB
testcase_51 AC 39 ms
53,428 KB
testcase_52 AC 37 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
t = [0] * n
v = [0] * n
for i in range(n):
    t[i], v[i] = map(int, input().split())
l = sum(t)
v24 = pow(24, MOD - 2, MOD)

def f(k):
    return k * (k + 1) * (k + 2) * (4 * l - 3 * k + 3) * v24 % MOD

ans = 0
p = 0
for i in range(n):
    ans += (f(p + t[i]) - f(p)) * v[i]
    p += t[i]
print(ans % MOD)
0