組み込み関数を使用せずにそれを行うことはできますか(つまり、 __builtin_popcount C++ で)?
パイソン
import List クラスの入力から 解決策: def countBits(self, n: int) -> List[int]: result = [] for i in range(n+1): result.append(str(bin(i)).split ("0b")[1].count('1')) 結果を返す print(Solution().countBits(5))