結果

問題 No.2083 OR Subset
ユーザー googol_S0googol_S0
提出日時 2022-09-26 05:25:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 72,364 KB
最終ジャッジ日時 2024-06-02 00:00:03
合計ジャッジ時間 31,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
67,532 KB
testcase_01 AC 49 ms
66,728 KB
testcase_02 AC 54 ms
68,604 KB
testcase_03 AC 1,683 ms
71,556 KB
testcase_04 AC 862 ms
70,220 KB
testcase_05 AC 2,847 ms
70,968 KB
testcase_06 AC 834 ms
70,800 KB
testcase_07 AC 110 ms
70,808 KB
testcase_08 AC 143 ms
69,756 KB
testcase_09 AC 1,739 ms
71,584 KB
testcase_10 AC 1,145 ms
70,472 KB
testcase_11 AC 597 ms
72,156 KB
testcase_12 AC 400 ms
69,948 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 49 ms
66,440 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
def cmb(n,r):
  if r<0 or r>n:
    return 0
  return ((g1[n]*g2[r]%mod)*g2[n-r])%mod

N=300000
g1=[1]*(N+3)
for i in range(2,N+3):
  g1[i]=g1[i-1]*i%mod
g2=[0]*len(g1)
g2[-1]=pow(g1[-1],mod-2,mod)
for i in range(N+1,-1,-1):
  g2[i]=g2[i+1]*(i+1)%mod
inv=[0]*(N+3)
for i in range(1,N+3):
  inv[i]=g2[i]*g1[i-1]%mod

N=int(input())
P=[0]*(N+1)
P[0]=1
for i in range(N):
  P[i+1]=P[i]*2%mod
ANS=0
for K in range(N+1):
  v=1
  for i in range(K+1):
    ANS=(ANS+(pow(P[K]-i,N,mod)*cmb(K,i)*v%mod)*g2[K])%mod
    v=-v
print(ANS)
0