結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー roarisroaris
提出日時 2021-06-11 22:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,494 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 97,512 KB
最終ジャッジ日時 2024-11-18 09:57:18
合計ジャッジ時間 51,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,272 KB
testcase_01 AC 36 ms
51,940 KB
testcase_02 AC 36 ms
53,496 KB
testcase_03 AC 36 ms
54,568 KB
testcase_04 AC 36 ms
52,728 KB
testcase_05 AC 35 ms
52,756 KB
testcase_06 AC 35 ms
53,400 KB
testcase_07 AC 37 ms
53,500 KB
testcase_08 AC 37 ms
53,284 KB
testcase_09 AC 36 ms
53,308 KB
testcase_10 AC 40 ms
53,772 KB
testcase_11 AC 36 ms
52,492 KB
testcase_12 AC 37 ms
54,540 KB
testcase_13 AC 557 ms
81,800 KB
testcase_14 AC 1,317 ms
93,372 KB
testcase_15 AC 711 ms
83,700 KB
testcase_16 AC 693 ms
83,624 KB
testcase_17 AC 522 ms
81,928 KB
testcase_18 AC 973 ms
87,028 KB
testcase_19 AC 891 ms
85,264 KB
testcase_20 AC 1,083 ms
89,004 KB
testcase_21 AC 93 ms
76,292 KB
testcase_22 AC 959 ms
86,700 KB
testcase_23 AC 809 ms
83,908 KB
testcase_24 AC 200 ms
77,532 KB
testcase_25 AC 1,374 ms
93,200 KB
testcase_26 AC 1,431 ms
96,152 KB
testcase_27 AC 705 ms
83,620 KB
testcase_28 AC 1,444 ms
96,216 KB
testcase_29 AC 1,458 ms
96,388 KB
testcase_30 AC 1,443 ms
96,508 KB
testcase_31 AC 1,447 ms
96,136 KB
testcase_32 AC 1,448 ms
96,072 KB
testcase_33 AC 1,442 ms
96,500 KB
testcase_34 AC 1,443 ms
95,960 KB
testcase_35 AC 1,441 ms
96,012 KB
testcase_36 AC 1,455 ms
96,004 KB
testcase_37 AC 1,445 ms
96,264 KB
testcase_38 AC 1,448 ms
96,136 KB
testcase_39 AC 1,453 ms
96,504 KB
testcase_40 AC 1,439 ms
96,520 KB
testcase_41 AC 1,444 ms
96,256 KB
testcase_42 AC 1,444 ms
95,868 KB
testcase_43 AC 1,366 ms
96,308 KB
testcase_44 AC 1,370 ms
96,872 KB
testcase_45 AC 1,372 ms
96,428 KB
testcase_46 AC 1,356 ms
96,232 KB
testcase_47 AC 1,395 ms
96,824 KB
testcase_48 AC 1,494 ms
97,512 KB
testcase_49 AC 1,439 ms
95,884 KB
testcase_50 AC 37 ms
52,820 KB
testcase_51 AC 36 ms
52,532 KB
testcase_52 AC 37 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(a, b):
    return (3*a**4-2*a**3*(2*S+3)-3*a**2+a*(4*S+6)-b*(b**2+3*b+2)*(3*b-4*S-3))//24

N = int(input())
S = 0
TV = []

for _ in range(N):
    T, V = map(int, input().split())
    S += T
    TV.append((T, V))

ans = 0
acc = 1
MOD = 998244353

for T, V in TV:
    ans += f(acc, acc+T-1)*V
    ans %= MOD
    acc += T
    acc %= MOD

print(ans)
0