#include <iostream> #include <algorithm> #include <vector> #include <cassert> #include <random> using namespace std; #define ull unsigned long long //我的代码,0% ull solve(ull x, ull k) { ull res = 0; int ik = 0; for (int ix = 0; ix < 64; ++ix) { ...