結果

問題 No.1310 量子アニーリング
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-16 00:50:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,800 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-09-16 00:51:02
合計ジャッジ時間 3,093 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
51,456 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 45 ms
61,184 KB
testcase_12 AC 54 ms
63,488 KB
testcase_13 AC 92 ms
67,328 KB
testcase_14 AC 91 ms
68,864 KB
testcase_15 AC 98 ms
70,016 KB
testcase_16 AC 102 ms
70,528 KB
testcase_17 AC 131 ms
73,728 KB
testcase_18 AC 155 ms
78,592 KB
testcase_19 AC 95 ms
69,632 KB
testcase_20 AC 70 ms
65,792 KB
testcase_21 AC 62 ms
65,408 KB
testcase_22 AC 159 ms
78,208 KB
testcase_23 AC 93 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1310

MOD = 998244353


class CombinationCalculator:
    """
    modを考慮したPermutation, Combinationを計算するためのクラス
    """    
    def __init__(self, size, mod):
        self.mod = mod
        self.factorial = [0] * (size + 1)
        self.factorial[0] = 1
        for i in range(1, size + 1):
            self.factorial[i] = (i * self.factorial[i - 1]) % self.mod
        
        self.inv_factorial = [0] * (size + 1)
        self.inv_factorial[size] = pow(self.factorial[size], self.mod - 2, self.mod)

        for i in reversed(range(size)):
            self.inv_factorial[i] = ((i + 1) * self.inv_factorial[i + 1]) % self.mod

    def calc_combination(self, n, r):
        if n < 0 or n < r or r < 0:
            return 0

        if r == 0 or n == r:
            return 1
        
        ans = self.inv_factorial[n - r] * self.inv_factorial[r]
        ans %= self.mod
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
    
    def calc_permutation(self, n, r):
        if n < 0 or n < r:
            return 0

        ans = self.inv_factorial[n - r]
        ans *= self.factorial[n]
        ans %= self.mod
        return ans
        

def main():
    N = int(input())

    combi = CombinationCalculator(N, MOD)

    answer = 0
    for n in range(N):
        # s_1 = +として「変化がある点のかずの組み合わせ」で主客転倒を行う
        if n % 2 == 0:
            E = - (N - 2 * n)
        else:
            E = - (N - 2 - 2 * n)
        absE = abs(E)
        ans = pow(2, absE, MOD)
        c = combi.calc_combination(N - 1, n)
        answer += (ans * c) % MOD
        answer %= MOD
    answer *= 2
    answer %= MOD
    print(answer)







if __name__ == "__main__":
    main()
0