結果

問題 No.1310 量子アニーリング
ユーザー AEnAEn
提出日時 2022-09-01 13:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 80,120 KB
最終ジャッジ日時 2024-11-14 05:12:46
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,484 KB
testcase_01 AC 38 ms
51,816 KB
testcase_02 AC 38 ms
52,292 KB
testcase_03 AC 38 ms
53,708 KB
testcase_04 AC 39 ms
52,028 KB
testcase_05 AC 37 ms
52,360 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 42 ms
53,280 KB
testcase_08 AC 39 ms
52,212 KB
testcase_09 AC 40 ms
52,120 KB
testcase_10 AC 41 ms
52,404 KB
testcase_11 AC 47 ms
61,860 KB
testcase_12 AC 60 ms
65,704 KB
testcase_13 AC 121 ms
73,560 KB
testcase_14 AC 151 ms
76,336 KB
testcase_15 AC 180 ms
78,540 KB
testcase_16 AC 185 ms
78,928 KB
testcase_17 AC 243 ms
80,120 KB
testcase_18 AC 303 ms
78,804 KB
testcase_19 AC 168 ms
78,388 KB
testcase_20 AC 101 ms
69,348 KB
testcase_21 AC 80 ms
66,552 KB
testcase_22 AC 303 ms
78,732 KB
testcase_23 AC 122 ms
73,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 998244353
fac = [0]*(N+1)
inv = [0]*(N+1)
fac[0], inv[0] = 1, 1
for i in range(1, N+1):
    fac[i] = fac[i-1]*i
    fac[i] %= mod
    inv[i] = inv[i-1]*pow(i, mod-2, mod)
    inv[i] %= mod
res = 0
for i in range(0, N+1, 2):
    res += 2*fac[N]*inv[i]*inv[N-i]*pow(2, abs(N-2*i), mod)
    res %= mod
print(res)
0