結果

問題 No.1892 Extended Fib Series
ユーザー 👑 NachiaNachia
提出日時 2022-04-05 22:52:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 712 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 1,227 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 11:06:09
合計ジャッジ時間 5,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 454 ms
5,376 KB
testcase_02 AC 234 ms
5,376 KB
testcase_03 AC 17 ms
5,376 KB
testcase_04 AC 118 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 619 ms
5,376 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 246 ms
5,376 KB
testcase_09 AC 163 ms
5,376 KB
testcase_10 AC 98 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 66 ms
5,376 KB
testcase_13 AC 304 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 712 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)

int main(){
    u32 N, L; cin >> N >> L;
    vector<u32> dp(N+1, 0);
    dp[0] = 1;
    for(u32 i=1; i<=N; i++){
        u64 t = 0;
        for(u32 j=(i>=L)?i-L:0; j<i; j++){
            t += dp[j];
        }
        dp[i] = t % 1000000007;
    }
    cout << dp[N] << '\n';
    return 0;
}

struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0