結果

問題 No.420 mod2漸化式
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2017-11-03 17:03:33
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 79,384 KB
実行使用メモリ 17,088 KB
最終ジャッジ日時 2024-11-22 15:28:56
合計ジャッジ時間 54,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 TLE -
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 2 ms
8,448 KB
testcase_06 TLE -
testcase_07 AC 7 ms
8,576 KB
testcase_08 AC 21 ms
10,624 KB
testcase_09 AC 71 ms
8,576 KB
testcase_10 AC 205 ms
10,624 KB
testcase_11 AC 509 ms
8,576 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

long long s = 0, d = 0;

void dfs( long long a, int depth, int r ) {
        
    if ( a > 2147483647 ) { return; }
    if ( r == 0 ) {
        d += 30-depth+1;
        s += a*( static_cast<long long>( pow( 2, 30-depth+1 ) ) - 1 );
        return;
    }
    
    dfs( a*2, depth+1, r );
    dfs( a*2+1, depth+1, r-1 );    
}


int main() {
    
    long long x;
    cin >> x;
    
    dfs( 1, 0, x-1 );
    
    cout << d << " " << s << endl;
    
    return 0;
}
0