結果

問題 No.1540 級数おもちゃ
ユーザー dachengzdachengz
提出日時 2022-12-13 13:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-04-24 23:57:08
合計ジャッジ時間 5,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 47 ms
51,968 KB
testcase_02 AC 59 ms
62,848 KB
testcase_03 AC 74 ms
73,344 KB
testcase_04 AC 76 ms
72,320 KB
testcase_05 AC 82 ms
79,616 KB
testcase_06 AC 93 ms
84,480 KB
testcase_07 AC 91 ms
84,608 KB
testcase_08 AC 87 ms
79,872 KB
testcase_09 AC 68 ms
69,504 KB
testcase_10 AC 92 ms
84,736 KB
testcase_11 AC 99 ms
85,888 KB
testcase_12 AC 95 ms
86,144 KB
testcase_13 AC 100 ms
86,272 KB
testcase_14 AC 95 ms
86,016 KB
testcase_15 AC 95 ms
85,760 KB
testcase_16 AC 94 ms
85,760 KB
testcase_17 AC 95 ms
86,016 KB
testcase_18 AC 93 ms
86,016 KB
testcase_19 AC 94 ms
85,888 KB
testcase_20 AC 93 ms
86,016 KB
testcase_21 AC 67 ms
70,528 KB
testcase_22 AC 93 ms
86,144 KB
testcase_23 AC 74 ms
75,520 KB
testcase_24 AC 63 ms
65,792 KB
testcase_25 AC 61 ms
65,024 KB
testcase_26 AC 95 ms
86,144 KB
testcase_27 AC 59 ms
62,848 KB
testcase_28 AC 84 ms
82,048 KB
testcase_29 AC 58 ms
64,000 KB
testcase_30 AC 94 ms
86,528 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 43 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = int(input())
A = [int(_) for _ in input().split()]
inv = [1] * max(N + 1, 4)

for i in range(2, max(N + 1, 4)):
    inv[i] = mod - mod // i * inv[mod % i] % mod

ans = [0, 0, 0]
coef = [[4, mod - 2, 0], [0, 0, inv[3]]]
if N >= 1:
    ans[2] = (ans[2] + coef[1][2] * A[0]) % mod
if N >= 2:
    ans[0] = (ans[0] + coef[0][0] * A[1]) % mod
    ans[1] = (ans[1] + coef[0][1] * A[1]) % mod
for j, a in enumerate(A[2:], start=3):
    arr = coef[j & 1]
    mul = 4 * (j - 2) * inv[j - 1] % mod
    for i in range(3):
        arr[i] = arr[i] * mul % mod
    arr[1] = (arr[1] - 2 * inv[j - 1]) % mod
    for i in range(3):
        ans[i] = (ans[i] + arr[i] * a) % mod
print(ans[0], ans[1], ans[2])
0