結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
52,952 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 39 ms
52,736 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 255 ms
78,524 KB
testcase_14 AC 510 ms
81,000 KB
testcase_15 AC 309 ms
78,700 KB
testcase_16 AC 300 ms
78,592 KB
testcase_17 AC 243 ms
78,140 KB
testcase_18 AC 393 ms
79,484 KB
testcase_19 AC 368 ms
79,232 KB
testcase_20 AC 421 ms
80,128 KB
testcase_21 AC 90 ms
76,900 KB
testcase_22 AC 383 ms
79,652 KB
testcase_23 AC 331 ms
79,116 KB
testcase_24 AC 129 ms
76,928 KB
testcase_25 AC 528 ms
80,956 KB
testcase_26 AC 544 ms
81,024 KB
testcase_27 AC 304 ms
78,592 KB
testcase_28 AC 548 ms
81,280 KB
testcase_29 AC 560 ms
81,628 KB
testcase_30 AC 560 ms
81,280 KB
testcase_31 AC 551 ms
81,604 KB
testcase_32 AC 565 ms
81,212 KB
testcase_33 AC 552 ms
81,664 KB
testcase_34 AC 561 ms
81,900 KB
testcase_35 AC 550 ms
81,224 KB
testcase_36 AC 558 ms
81,408 KB
testcase_37 AC 550 ms
81,024 KB
testcase_38 AC 561 ms
81,208 KB
testcase_39 AC 554 ms
81,296 KB
testcase_40 AC 552 ms
81,176 KB
testcase_41 AC 548 ms
81,536 KB
testcase_42 AC 559 ms
81,300 KB
testcase_43 AC 549 ms
81,152 KB
testcase_44 AC 541 ms
81,408 KB
testcase_45 AC 553 ms
81,164 KB
testcase_46 AC 532 ms
81,024 KB
testcase_47 AC 550 ms
81,152 KB
testcase_48 AC 582 ms
81,024 KB
testcase_49 AC 559 ms
81,636 KB
testcase_50 AC 38 ms
51,840 KB
testcase_51 AC 38 ms
51,968 KB
testcase_52 AC 37 ms
52,096 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