結果

問題 No.1310 量子アニーリング
ユーザー shotoyooshotoyoo
提出日時 2020-12-07 23:56:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,168 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 103,512 KB
最終ジャッジ日時 2024-09-17 14:09:37
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,032 KB
testcase_01 AC 35 ms
52,500 KB
testcase_02 AC 38 ms
52,416 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
53,524 KB
testcase_06 WA -
testcase_07 AC 35 ms
53,856 KB
testcase_08 AC 34 ms
53,020 KB
testcase_09 AC 33 ms
53,492 KB
testcase_10 WA -
testcase_11 AC 41 ms
61,192 KB
testcase_12 AC 44 ms
64,452 KB
testcase_13 AC 57 ms
74,428 KB
testcase_14 AC 64 ms
79,952 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 81 ms
91,288 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 52 ms
71,828 KB
testcase_21 AC 47 ms
68,556 KB
testcase_22 AC 90 ms
102,544 KB
testcase_23 AC 58 ms
73,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

n = int(input())
### 素数の逆元とCombination

# M = 10**9+7 # 出力の制限
M = 998244353
N = 2*n+10 # 必要なテーブルサイズ
g1 = [0] * (N+1) # 元テーブル
g2 = [0] * (N+1) #逆元テーブル
inverse = [0] * (N+1) #逆元テーブル計算用テーブル
g1[0] = g1[1] = g2[0] = g2[1] = 1
inverse[0], inverse[1] = [0, 1] 
for i in range( 2, N + 1 ):
    g1[i] = ( g1[i-1] * i ) % M 
    inverse[i] = ( -inverse[M % i] * (M//i) ) % M # ai+b==0 mod M <=> i==-b*a^(-1) <=> i^(-1)==-b^(-1)*aより
    g2[i] = (g2[i-1] * inverse[i]) % M 
def cmb(n, r, M):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return ((g1[n] * g2[r] % M) * g2[n-r]) % M
def perm(n, r, M):
    if (r<0 or r>n):
        return 0
    return (g1[n] * g2[n-r]) % M
vs = [1]
v = 1
for i in range(2*n+10):
    v *= 2
    v %= M
    vs.append(v)
def sub(n):
    ans = 0
    for i in range(n+1):
        # i: +1の個数
        ans += cmb(n, i, M) * vs[abs(-n+2*i)]
        ans %= M
    return ans
ans = sub(n)
print(ans%M)
0