結果
問題 | No.381 名声値を稼ごう Extra |
ユーザー | uretihsiaania |
提出日時 | 2023-11-09 17:59:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,367 ms / 8,000 ms |
コード長 | 713 bytes |
コンパイル時間 | 4,365 ms |
コンパイル使用メモリ | 335,992 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-09-26 00:23:26 |
合計ジャッジ時間 | 6,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,812 KB |
testcase_01 | AC | 1,367 ms
6,812 KB |
ソースコード
#include <algorithm> #include <array> // #include <atcoder/all> #include <bitset> #include <cmath> #include <cstring> #include <iomanip> #include <iostream> #include <map> #include <math.h> #include <numeric> #include <queue> #include <random> #include <set> #include <stdint.h> #include <string> #include <tuple> #include <unordered_map> #include <unordered_set> #include <vector> #include <boost/multiprecision/cpp_int.hpp> using namespace std; // using namespace atcoder; using namespace boost; namespace mp = boost::multiprecision; int main() { mp::cpp_int n; cin >> n; int64_t ans = 0; for (int i = 0; i < 4000000; i++) { ans += mp::bit_test(n, i); } cout << ans << endl; }