結果
問題 | No.1357 Nada junior high school entrance examination 3rd day |
ユーザー | kozy |
提出日時 | 2021-01-17 15:59:59 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 890 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 23,652 KB |
最終ジャッジ日時 | 2024-05-07 05:23:54 |
合計ジャッジ時間 | 4,866 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
def cmb(n, r,): if ( r<0 or r>n ): return 0 r = min(r, n-r) return g1[n] * g2[r] * g2[n-r] % mod mod = 998244353 #出力の制限 N = 10**5 g1 = [1, 1] # 元テーブル g2 = [1, 1] #逆元テーブル inverse = [0, 1] #逆元テーブル計算用テーブル for i in range( 2, N + 1 ): g1.append( ( g1[-1] * i ) % mod ) inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod ) g2.append( (g2[-1] * inverse[-1]) % mod ) K=int(input()) L=[0]*(2*K+1) mod=998244353 kaijyo=1 for i in range(1,2*K+1): kaijyo*=i kaijyo%=mod ans*=pow(2,2*K-1,mod) B=list() B.append(1) for i in range(1,2*K+1): if i%2==0: B.append(0) continue a=0 for j in range(i): a+=cmb(i+1,j)*B[j] a%=mod a*=pow(i+1,-1,mod) a%=mod B.append(a) ans*=pow(kaijyo,-1,mod) ans%=mod if K%2==0: ans*=-1 L[-1]=ans*B[-1]%mod print(*L)