結果

問題 No.1531 く2
ユーザー googol_S0googol_S0
提出日時 2021-06-04 20:30:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-04-29 23:55:35
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
71,808 KB
testcase_01 AC 79 ms
71,808 KB
testcase_02 AC 76 ms
71,680 KB
testcase_03 AC 97 ms
79,744 KB
testcase_04 AC 82 ms
73,728 KB
testcase_05 AC 81 ms
73,344 KB
testcase_06 AC 77 ms
71,680 KB
testcase_07 AC 78 ms
71,808 KB
testcase_08 AC 70 ms
69,120 KB
testcase_09 AC 75 ms
70,400 KB
testcase_10 AC 81 ms
73,088 KB
testcase_11 AC 87 ms
75,520 KB
testcase_12 AC 81 ms
73,088 KB
testcase_13 AC 98 ms
79,744 KB
testcase_14 AC 100 ms
79,616 KB
testcase_15 AC 101 ms
79,616 KB
testcase_16 AC 98 ms
79,616 KB
testcase_17 AC 97 ms
79,488 KB
testcase_18 AC 98 ms
79,488 KB
testcase_19 AC 97 ms
79,616 KB
testcase_20 AC 100 ms
80,000 KB
testcase_21 AC 98 ms
79,744 KB
testcase_22 AC 99 ms
79,872 KB
testcase_23 AC 100 ms
79,488 KB
testcase_24 AC 99 ms
79,616 KB
testcase_25 AC 101 ms
79,700 KB
testcase_26 AC 100 ms
79,872 KB
testcase_27 AC 100 ms
79,616 KB
testcase_28 AC 100 ms
79,872 KB
testcase_29 AC 100 ms
79,744 KB
testcase_30 AC 100 ms
80,000 KB
testcase_31 AC 100 ms
79,744 KB
testcase_32 AC 100 ms
79,872 KB
testcase_33 AC 99 ms
79,744 KB
testcase_34 AC 100 ms
80,000 KB
testcase_35 AC 101 ms
79,744 KB
testcase_36 AC 101 ms
79,872 KB
testcase_37 AC 100 ms
79,744 KB
testcase_38 AC 100 ms
79,872 KB
testcase_39 AC 100 ms
80,000 KB
testcase_40 AC 100 ms
79,616 KB
testcase_41 AC 101 ms
79,800 KB
testcase_42 AC 80 ms
72,576 KB
testcase_43 AC 82 ms
72,448 KB
testcase_44 AC 96 ms
80,000 KB
testcase_45 AC 82 ms
72,576 KB
testcase_46 AC 85 ms
74,240 KB
testcase_47 AC 96 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
M=70
DP=[[[0]*(M+1) for i in range(M+1)] for j in range(M+1)]
DP[0][0][0]=1
mod=998244353
for i in range(1,M+1):
  for j in range(M):
    for k in range(j,M):
      if (K>>(M-i))&1:
        if (N>>(M-i))&1:
          DP[i][0][k-j+1]=(DP[i][0][k-j+1]+DP[i-1][j][k])%mod
        DP[i][j+1][k+1]=(DP[i][j+1][k+1]+DP[i-1][j][k])%mod
      else:
        if (N>>(M-i))&1:
          DP[i][j+1][k+1]=(DP[i][j+1][k+1]+DP[i-1][j][k])%mod
        DP[i][0][k]=(DP[i][0][k]+DP[i-1][j][k])%mod
ANS=0
T=[1]
for i in range(M+1):
  T.append(T[i]*2%mod)
for i in range(M+1):
  for j in range(M+1):
    ANS+=DP[M][i][j]*T[j]%mod
print(ANS%mod)
0