結果
問題 | No.737 PopCount |
ユーザー | ei1333333 |
提出日時 | 2018-05-02 22:44:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 283 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 199,160 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-12 04:43:13 |
合計ジャッジ時間 | 4,669 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,496 KB |
testcase_01 | AC | 7 ms
5,248 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using int64 = long long; const int mod = 1e9 + 7; int main() { int64 N; cin >> N; int64 ret = 0; for(int64 i = 1; i <= N; i++) { ret += 1LL * i * __builtin_popcountll(i) % mod; ret %= mod; } cout << ret << endl; }