結果

問題 No.1310 量子アニーリング
ユーザー sotanishysotanishy
提出日時 2020-12-07 12:09:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-17 13:51:27
合計ジャッジ時間 3,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
51,328 KB
testcase_02 AC 33 ms
51,456 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 33 ms
51,328 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 32 ms
51,328 KB
testcase_07 AC 32 ms
51,456 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 44 ms
59,520 KB
testcase_12 AC 57 ms
63,744 KB
testcase_13 AC 112 ms
72,832 KB
testcase_14 AC 141 ms
76,160 KB
testcase_15 AC 161 ms
76,032 KB
testcase_16 AC 166 ms
76,032 KB
testcase_17 AC 224 ms
76,416 KB
testcase_18 AC 273 ms
77,056 KB
testcase_19 AC 153 ms
76,288 KB
testcase_20 AC 92 ms
70,272 KB
testcase_21 AC 71 ms
67,200 KB
testcase_22 AC 275 ms
77,056 KB
testcase_23 AC 110 ms
73,076 KB
権限があれば一括ダウンロードができます

ソースコード

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]%m
print(sum(f[k]*pow(2,abs(N-2*k),m)for k in range(0,N+1,2))*2%m)
0