結果

問題 No.2939 Sigma Popcount Problem
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2024-12-11 01:17:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 165,472 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-11 01:17:23
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 252 ms
5,248 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cmath>
#include <complex>
#include <cstdint>
#include <cstring>
#include <ctime>
#include <deque>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>

int main() {
  int t;
  std::cin >> t;
  while (t--) {
    int n;
    std::cin >> n;
    int maxBits = 60;
    std::vector<long long> bitCounts(maxBits, 0);
    for (int i = 0; i < maxBits; i++) {
      long long blockSize = (1LL << (i + 1));  // 2^(i+1)
      long long fullBlocks = n / blockSize;
      long long remainder = n % blockSize;
      long long count = fullBlocks * (1LL << i);
      long long limit = (1LL << i);
      if (remainder >= limit) {
        count += (remainder - limit + 1); // 0 based, so + 1
      }
      bitCounts[i] = count;
    }
    long long result = std::accumulate(bitCounts.begin(), bitCounts.end(), 0LL);
    std::cout << result << '\n';
  }
}
0