結果

問題 No.1531 く2
ユーザー kozykozy
提出日時 2021-06-04 22:58:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 885 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 79,032 KB
最終ジャッジ日時 2024-04-30 11:24:36
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 72 ms
72,516 KB
testcase_04 AC 38 ms
52,812 KB
testcase_05 AC 39 ms
53,168 KB
testcase_06 WA -
testcase_07 AC 39 ms
53,056 KB
testcase_08 AC 39 ms
53,620 KB
testcase_09 AC 39 ms
53,140 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
53,852 KB
testcase_13 AC 61 ms
66,956 KB
testcase_14 AC 59 ms
65,936 KB
testcase_15 AC 54 ms
64,388 KB
testcase_16 AC 59 ms
66,956 KB
testcase_17 AC 55 ms
63,752 KB
testcase_18 AC 55 ms
65,280 KB
testcase_19 AC 59 ms
66,124 KB
testcase_20 AC 78 ms
73,132 KB
testcase_21 AC 78 ms
73,748 KB
testcase_22 AC 82 ms
74,220 KB
testcase_23 AC 80 ms
74,708 KB
testcase_24 AC 81 ms
74,572 KB
testcase_25 AC 82 ms
74,640 KB
testcase_26 AC 81 ms
73,880 KB
testcase_27 AC 80 ms
75,108 KB
testcase_28 AC 101 ms
78,608 KB
testcase_29 AC 81 ms
75,040 KB
testcase_30 AC 80 ms
73,716 KB
testcase_31 AC 81 ms
74,692 KB
testcase_32 AC 79 ms
74,088 KB
testcase_33 AC 82 ms
74,572 KB
testcase_34 AC 79 ms
74,888 KB
testcase_35 AC 93 ms
78,656 KB
testcase_36 AC 93 ms
78,644 KB
testcase_37 AC 96 ms
78,600 KB
testcase_38 AC 95 ms
78,888 KB
testcase_39 AC 95 ms
78,608 KB
testcase_40 AC 94 ms
79,032 KB
testcase_41 AC 96 ms
78,548 KB
testcase_42 AC 82 ms
74,368 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