結果

問題 No.1531 く2
ユーザー kozykozy
提出日時 2021-06-04 22:58:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 885 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 78,768 KB
最終ジャッジ日時 2024-11-20 06:09:35
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 72 ms
72,448 KB
testcase_04 AC 40 ms
52,768 KB
testcase_05 AC 41 ms
52,524 KB
testcase_06 WA -
testcase_07 AC 41 ms
52,876 KB
testcase_08 AC 40 ms
52,972 KB
testcase_09 AC 39 ms
52,692 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 41 ms
52,764 KB
testcase_13 AC 60 ms
65,936 KB
testcase_14 AC 58 ms
66,156 KB
testcase_15 AC 55 ms
65,052 KB
testcase_16 AC 61 ms
66,848 KB
testcase_17 AC 54 ms
63,864 KB
testcase_18 AC 56 ms
65,752 KB
testcase_19 AC 59 ms
66,028 KB
testcase_20 AC 77 ms
74,052 KB
testcase_21 AC 79 ms
74,780 KB
testcase_22 AC 81 ms
74,376 KB
testcase_23 AC 81 ms
74,648 KB
testcase_24 AC 82 ms
74,476 KB
testcase_25 AC 82 ms
74,524 KB
testcase_26 AC 82 ms
73,876 KB
testcase_27 AC 80 ms
74,292 KB
testcase_28 AC 100 ms
78,348 KB
testcase_29 AC 81 ms
74,788 KB
testcase_30 AC 80 ms
73,848 KB
testcase_31 AC 81 ms
74,452 KB
testcase_32 AC 79 ms
74,392 KB
testcase_33 AC 80 ms
74,728 KB
testcase_34 AC 78 ms
73,752 KB
testcase_35 AC 95 ms
78,536 KB
testcase_36 AC 95 ms
78,708 KB
testcase_37 AC 94 ms
78,748 KB
testcase_38 AC 94 ms
78,496 KB
testcase_39 AC 95 ms
78,768 KB
testcase_40 AC 94 ms
78,580 KB
testcase_41 AC 95 ms
78,296 KB
testcase_42 AC 80 ms
73,988 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

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):
    for j in range(M):
      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":
        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]
        dp[k+1][i+1][j+1]+=dp[k][i][j]
      else:
        dp[k+1][i+1][j+1]+=dp[k][i][j]
        dp[k+1][i-j+1][0]+=dp[k][i][j]
ans=0
for i in range(M):
  for j in range(M):
    ans+=pow(2,i,mod)*dp[M][i][j]
    ans%=mod
print(ans)
0