結果

問題 No.2083 OR Subset
ユーザー googol_S0googol_S0
提出日時 2022-09-26 05:25:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 72,220 KB
最終ジャッジ日時 2024-12-22 15:16:07
合計ジャッジ時間 35,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
67,876 KB
testcase_01 AC 57 ms
67,244 KB
testcase_02 AC 63 ms
70,004 KB
testcase_03 AC 1,878 ms
70,016 KB
testcase_04 AC 968 ms
69,760 KB
testcase_05 TLE -
testcase_06 AC 946 ms
69,504 KB
testcase_07 AC 129 ms
68,992 KB
testcase_08 AC 168 ms
69,376 KB
testcase_09 AC 1,953 ms
69,760 KB
testcase_10 AC 1,271 ms
69,760 KB
testcase_11 AC 677 ms
69,888 KB
testcase_12 AC 458 ms
69,632 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 58 ms
66,176 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