結果
問題 | No.2939 Sigma Popcount Problem |
ユーザー | 👑 Nachia |
提出日時 | 2024-10-18 21:35:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 1,821 bytes |
コンパイル時間 | 918 ms |
コンパイル使用メモリ | 77,268 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-18 22:25:57 |
合計ジャッジ時間 | 2,845 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 51 ms
6,816 KB |
testcase_09 | AC | 22 ms
6,816 KB |
testcase_10 | AC | 30 ms
6,816 KB |
testcase_11 | AC | 40 ms
6,824 KB |
testcase_12 | AC | 25 ms
6,816 KB |
testcase_13 | AC | 24 ms
6,820 KB |
testcase_14 | AC | 18 ms
6,820 KB |
testcase_15 | AC | 54 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,824 KB |
testcase_17 | AC | 55 ms
6,820 KB |
testcase_18 | AC | 26 ms
6,816 KB |
testcase_19 | AC | 46 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(int i=0; i<int(n); i++) const i64 INF = 1001001001001001001; template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; } template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; } #include <atcoder/modint> namespace nachia{ int Popcount(unsigned long long c) noexcept { #ifdef __GNUC__ return __builtin_popcountll(c); #else c = (c & (~0ull/3)) + ((c >> 1) & (~0ull/3)); c = (c & (~0ull/5)) + ((c >> 2) & (~0ull/5)); c = (c & (~0ull/17)) + ((c >> 4) & (~0ull/17)); c = (c * (~0ull/257)) >> 56; return c; #endif } // please ensure x != 0 int MsbIndex(unsigned long long x) noexcept { #ifdef __GNUC__ return 63 - __builtin_clzll(x); #else using u64 = unsigned long long; int q = (x >> 32) ? 32 : 0; auto m = x >> q; constexpr u64 hi = 0x8888'8888; constexpr u64 mi = 0x1111'1111; m = (((m | ~(hi - (m & ~hi))) & hi) * mi) >> 35; m = (((m | ~(hi - (x & ~hi))) & hi) * mi) >> 31; q += (m & 0xf) << 2; q += 0x3333'3333'2222'1100 >> (((x >> q) & 0xf) << 2) & 0xf; return q; #endif } // please ensure x != 0 int LsbIndex(unsigned long long x) noexcept { #ifdef __GNUC__ return __builtin_ctzll(x); #else return MsbIndex(x & -x); #endif } } using Modint = atcoder::static_modint<998244353>; using namespace std; void testcase(){ i64 N; cin >> N; N += 1; i64 ans = 0; i64 m = 1; while(N){ if(N % 2 == 1) ans += nachia::Popcount(N-1) * m; N /= 2; ans += N * m; m *= 2; } cout << ans << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); i64 T; cin >> T; rep(t,T) testcase(); return 0; }