結果

問題 No.1310 量子アニーリング
ユーザー H20H20
提出日時 2020-12-07 20:09:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 118,656 KB
最終ジャッジ日時 2024-09-17 14:02:21
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
105,216 KB
testcase_01 AC 92 ms
105,088 KB
testcase_02 AC 93 ms
105,216 KB
testcase_03 AC 93 ms
105,088 KB
testcase_04 AC 90 ms
104,960 KB
testcase_05 AC 92 ms
104,960 KB
testcase_06 AC 88 ms
105,088 KB
testcase_07 AC 89 ms
104,832 KB
testcase_08 AC 89 ms
105,344 KB
testcase_09 AC 89 ms
104,960 KB
testcase_10 AC 90 ms
105,600 KB
testcase_11 AC 93 ms
106,368 KB
testcase_12 AC 95 ms
107,904 KB
testcase_13 AC 98 ms
111,616 KB
testcase_14 AC 102 ms
112,768 KB
testcase_15 AC 107 ms
115,328 KB
testcase_16 AC 105 ms
111,744 KB
testcase_17 AC 110 ms
117,248 KB
testcase_18 AC 114 ms
118,656 KB
testcase_19 AC 102 ms
111,360 KB
testcase_20 AC 98 ms
110,016 KB
testcase_21 AC 97 ms
108,928 KB
testcase_22 AC 112 ms
118,528 KB
testcase_23 AC 100 ms
111,488 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
if N%4 == 0:
    cnt = 0
    for i in range(N//4):
        ans = (ans+(cmb(N,i*2,p)*4*po[N-i*4]))%p
        cnt = (cnt + cmb(N,i*2,p)*4)%p
    ans = (ans+(po[N] - cnt)%p)%p
elif N % 2 ==0:
    for a,i in enumerate(range(N,-1,-4)):
        ans = (ans+(cmb(N,a*2,p)*4*po[i]))%p
else:
    for i in range(N//2+1):
        ans = (ans+(cmb(N,i,p)*2*po[N-(i*2)]))%p

print(ans)
0