結果

問題 No.1310 量子アニーリング
ユーザー sotanishysotanishy
提出日時 2020-12-07 12:08:40
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 151 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 851,576 KB
最終ジャッジ日時 2024-09-17 13:51:21
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 36 ms
51,700 KB
testcase_07 AC 34 ms
51,456 KB
testcase_08 AC 35 ms
51,584 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
53,760 KB
testcase_11 AC 45 ms
67,968 KB
testcase_12 AC 198 ms
175,232 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input());m=998244353;f=[1]*-~N
for i in range(N):f[i+1]=(N-i)*pow(i+1,m-2,m)*f[i]
print(sum(f[k]*pow(2,abs(N-2*k),m)for k in range(0,N+1,2))*2%m)
0