結果

問題 No.1310 量子アニーリング
ユーザー H20H20
提出日時 2020-12-07 20:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 121,472 KB
最終ジャッジ日時 2024-09-17 14:02:26
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
105,088 KB
testcase_01 AC 84 ms
104,704 KB
testcase_02 AC 80 ms
105,088 KB
testcase_03 AC 90 ms
104,960 KB
testcase_04 AC 86 ms
104,832 KB
testcase_05 AC 85 ms
104,832 KB
testcase_06 AC 83 ms
105,088 KB
testcase_07 AC 81 ms
105,088 KB
testcase_08 AC 82 ms
105,344 KB
testcase_09 AC 81 ms
105,088 KB
testcase_10 AC 79 ms
105,216 KB
testcase_11 AC 82 ms
106,240 KB
testcase_12 AC 89 ms
109,824 KB
testcase_13 AC 95 ms
113,664 KB
testcase_14 AC 101 ms
115,584 KB
testcase_15 AC 101 ms
117,248 KB
testcase_16 AC 99 ms
118,144 KB
testcase_17 AC 103 ms
121,472 KB
testcase_18 AC 104 ms
118,784 KB
testcase_19 AC 96 ms
116,608 KB
testcase_20 AC 92 ms
112,256 KB
testcase_21 AC 90 ms
111,232 KB
testcase_22 AC 103 ms
118,400 KB
testcase_23 AC 92 ms
113,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

p = 998244353
PN = 2  * 10 ** 5 + 100 
fact = [1, 1]
factinv = [1, 1]
inv = [0, 1]

def cmb(n, r, p):
    if (r < 0) or (n < r):
        return 0
    r = min(r, n - r)
    return fact[n] * factinv[r] * factinv[n-r] % p


for i in range(2, PN + 1):
    fact.append((fact[-1] * i) % p)
    inv.append((-inv[p % i] * (p // i)) % p)
    factinv.append((factinv[-1] * inv[-1]) % p)


po = [0]*(PN)
po[0] = 1
for i in range(1,N+2):
    po[i] = po[i-1]*2%p

ans = 0
for i in range(0,N+1,2):
    ans = (ans+(cmb(N,i,p)*2*po[abs(N-(i*2))]))%p
print(ans)
0