結果

問題 No.1531 く2
ユーザー kozykozy
提出日時 2021-06-04 23:04:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-04-30 11:34:45
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,136 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 45 ms
11,136 KB
testcase_04 AC 27 ms
11,008 KB
testcase_05 AC 27 ms
11,008 KB
testcase_06 AC 25 ms
11,136 KB
testcase_07 AC 27 ms
11,136 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 26 ms
11,008 KB
testcase_11 AC 26 ms
11,008 KB
testcase_12 AC 25 ms
11,008 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 30 ms
11,136 KB
testcase_15 AC 28 ms
11,136 KB
testcase_16 AC 29 ms
11,008 KB
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 30 ms
11,008 KB
testcase_20 AC 193 ms
12,928 KB
testcase_21 AC 188 ms
12,800 KB
testcase_22 AC 196 ms
13,184 KB
testcase_23 AC 204 ms
13,056 KB
testcase_24 AC 193 ms
13,056 KB
testcase_25 AC 189 ms
13,056 KB
testcase_26 AC 195 ms
13,056 KB
testcase_27 AC 195 ms
13,056 KB
testcase_28 AC 180 ms
13,056 KB
testcase_29 AC 196 ms
13,056 KB
testcase_30 AC 210 ms
13,184 KB
testcase_31 AC 189 ms
12,800 KB
testcase_32 AC 197 ms
12,928 KB
testcase_33 AC 202 ms
13,056 KB
testcase_34 AC 194 ms
12,928 KB
testcase_35 AC 201 ms
13,056 KB
testcase_36 AC 206 ms
13,056 KB
testcase_37 AC 202 ms
13,056 KB
testcase_38 AC 193 ms
13,056 KB
testcase_39 AC 199 ms
13,056 KB
testcase_40 AC 213 ms
13,184 KB
testcase_41 AC 198 ms
13,056 KB
testcase_42 AC 177 ms
13,056 KB
testcase_43 AC 224 ms
13,824 KB
testcase_44 AC 245 ms
13,824 KB
testcase_45 AC 259 ms
13,824 KB
testcase_46 AC 241 ms
13,952 KB
testcase_47 AC 237 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#k桁目まで見たとき、1の個数がiこ、今j個1が連続しているものの個数
N,K=map(int,input().split())
s=bin(N)[2:]
t=bin(K)[2:]
mod=998244353
if len(s)<len(t):
  s=(len(t)-len(s))*"0"+s
else:
  t=(len(s)-len(t))*"0"+t
M=len(s)
dp=[[[0]*(M+1) for i in range(M+1)] for j in range(M+1)]
dp[0][0][0]=1
for k in range(M):
  for i in range(M+1):
    for j in range(M+1):
      if t[k]=="1":
        a=1
      else:
        a=0
      if s[k]=="0" and t[k]=="0":
        dp[k+1][i][0]+=dp[k][i][j]
      elif s[k]=="0" and t[k]=="1":
        if i+1<=M and j+1<=M:
          dp[k+1][i+1][j+1]+=dp[k][i][j]
      elif s[k]=="1" and t[k]=="0":
        dp[k+1][i][0]+=dp[k][i][j]
        if i+1<=M and j+1<=M:
          dp[k+1][i+1][j+1]+=dp[k][i][j]
      else:
        if i+1<=M and j+1<=M:
          dp[k+1][i+1][j+1]+=dp[k][i][j]
        if 0<=i-j+1<=M:
          dp[k+1][i-j+1][0]+=dp[k][i][j]
ans=0
for i in range(M+1):
  for j in range(M+1):
    ans+=pow(2,i,mod)*dp[M][i][j]
    ans%=mod
print(ans)
0