結果

問題 No.1310 量子アニーリング
ユーザー tekitoudatoutekitoudatou
提出日時 2020-12-11 00:47:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 77,712 KB
最終ジャッジ日時 2024-09-19 21:00:09
合計ジャッジ時間 3,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 43 ms
58,496 KB
testcase_12 AC 70 ms
71,808 KB
testcase_13 AC 125 ms
76,544 KB
testcase_14 AC 151 ms
76,780 KB
testcase_15 AC 173 ms
76,928 KB
testcase_16 AC 177 ms
76,980 KB
testcase_17 AC 227 ms
77,312 KB
testcase_18 AC 282 ms
77,656 KB
testcase_19 AC 159 ms
76,800 KB
testcase_20 AC 107 ms
76,288 KB
testcase_21 AC 86 ms
73,656 KB
testcase_22 AC 280 ms
77,712 KB
testcase_23 AC 126 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=998244353
comb=1

pow2=[1]*(n+1)

def invmod(x):
    return pow(x,mod-2,mod)

for r in range(1,n+1):
    pow2[r]=(pow2[r-1]*2)%mod
ans=0
for r in range(n//2+1):
    ans+=comb*pow2[abs(4*r-n)]
    ans%=mod
    comb*=(n-2*r-1)*(n-2*r)*invmod(2*r+2)*invmod(2*r+1)
    comb%=mod

print((2*ans)%mod)
0