結果

問題 No.303 割れません
ユーザー mamekinmamekin
提出日時 2016-01-30 16:56:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 91,316 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-09-21 19:16:13
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

long long solve(int len)
{
    vector<long long> dp(len+1, 0);
    vector<long long> sum(len+1, 0);
    dp[0] = 1;
    sum[0] = 1;

    for(int i=1; i<=len; ++i){
        dp[i] += sum[i-1];
        sum[i] = dp[i];
        if(i >= 2)
            sum[i] += sum[i-2];
    }

    return dp[len];
}

int main()
{
    int len;
    cin >> len;

    if(len == 2){
        cout << 4 << endl << 1 << endl;
        return 0;
    }

    long long ans = solve(len);
    if(len % 2 == 0){
        long long x = solve(len / 2);
        ans -= x * x;
    }
    cout << len << endl << ans << endl;

    return 0;
}
0