結果

問題 No.1310 量子アニーリング
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-16 10:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,456 KB
最終ジャッジ日時 2024-12-29 23:38:53
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,348 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 45 ms
52,352 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 44 ms
52,352 KB
testcase_11 AC 52 ms
60,160 KB
testcase_12 AC 61 ms
64,896 KB
testcase_13 AC 80 ms
82,560 KB
testcase_14 AC 91 ms
90,880 KB
testcase_15 AC 98 ms
99,072 KB
testcase_16 AC 99 ms
99,200 KB
testcase_17 AC 122 ms
113,920 KB
testcase_18 AC 150 ms
131,456 KB
testcase_19 AC 95 ms
94,720 KB
testcase_20 AC 72 ms
76,544 KB
testcase_21 AC 64 ms
69,760 KB
testcase_22 AC 155 ms
131,380 KB
testcase_23 AC 80 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n):
  mod=998244353
  ans=0
  for i in range(1<<n):
    ary=[]
    for j in range(n):
      if (i>>j)&1:
        ary.append(1)
      else:
        ary.append(-1)
    tmp=0
    for j in range(n):
      tmp+=-ary[j]*ary[j-1]
    ans+=pow(2,abs(tmp))
    ans%=mod
  return ans
"""
正負切り替わるところの個数をxとするとE=n-2*x
xは偶数のみ取る。
場合数はcmb(n,x)
"""
def main1(n):
  mod=998244353
  def cmb(n,r,mod=mod):
    if (r<0 or r>n):
      return 0
    r=min(r,n-r)
    return (g1[n]*g2[r]*g2[n-r])%mod
  g1=[1,1] # g1[i]=i! % mod :階乗
  g2=[1,1] # g2[i]=(i!)^(-1) % mod :階乗の逆元
  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)
  ans=0
  p2=[1,2,4]
  for _ in range(n):p2.append(p2[-1]*2%mod)
  for x in range(0,n+1,2):
    # 正負が切り替わる所の個数
    # E=n-2*x
    e=n-2*x
    tmp=2*cmb(n,x)
    ans+=p2[abs(e)]*tmp%mod
    ans%=mod
  return ans

if __name__=='__main__':
  n=int(input())
  #ret0=main0(n)
  #print(ret0)
  ret1=main1(n)
  print(ret1)
0