結果

問題 No.1310 量子アニーリング
ユーザー titiatitia
提出日時 2020-12-07 05:40:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-09-17 13:36:13
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
88,448 KB
testcase_01 AC 63 ms
87,808 KB
testcase_02 AC 64 ms
87,936 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 62 ms
88,064 KB
testcase_06 WA -
testcase_07 AC 68 ms
88,064 KB
testcase_08 AC 68 ms
88,192 KB
testcase_09 AC 67 ms
88,064 KB
testcase_10 WA -
testcase_11 AC 67 ms
90,112 KB
testcase_12 AC 73 ms
91,776 KB
testcase_13 AC 93 ms
97,664 KB
testcase_14 AC 106 ms
100,608 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 144 ms
105,600 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 88 ms
95,616 KB
testcase_21 AC 80 ms
94,208 KB
testcase_22 AC 168 ms
102,912 KB
testcase_23 AC 97 ms
97,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

mod=998244353
FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]*FACT_INV[a-b]%mod
    else:
        return 0

ANS=0
for i in range(N+1):
    ANS=(ANS+Combi(N,i)*pow(2,abs(N-2*i),mod))%mod
print(ANS)
0