結果

問題 No.1331 Moving Penguin
ユーザー anmichianmichi
提出日時 2021-01-08 21:48:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,076 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 207,732 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-28 02:40:45
合計ジャッジ時間 11,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 183 ms
6,940 KB
testcase_05 AC 174 ms
6,944 KB
testcase_06 AC 175 ms
6,944 KB
testcase_07 AC 174 ms
6,940 KB
testcase_08 AC 169 ms
6,944 KB
testcase_09 AC 173 ms
6,940 KB
testcase_10 AC 168 ms
6,940 KB
testcase_11 AC 172 ms
6,944 KB
testcase_12 AC 173 ms
6,944 KB
testcase_13 AC 175 ms
6,944 KB
testcase_14 AC 175 ms
6,944 KB
testcase_15 AC 172 ms
6,944 KB
testcase_16 AC 171 ms
6,940 KB
testcase_17 AC 176 ms
6,944 KB
testcase_18 AC 174 ms
6,944 KB
testcase_19 AC 174 ms
6,948 KB
testcase_20 AC 172 ms
6,944 KB
testcase_21 AC 172 ms
6,940 KB
testcase_22 AC 172 ms
6,940 KB
testcase_23 AC 173 ms
6,944 KB
testcase_24 AC 177 ms
6,940 KB
testcase_25 AC 176 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 187 ms
6,944 KB
testcase_28 WA -
testcase_29 AC 187 ms
6,940 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 59 ms
6,944 KB
testcase_33 WA -
testcase_34 AC 145 ms
6,940 KB
testcase_35 AC 181 ms
6,940 KB
testcase_36 AC 178 ms
6,940 KB
testcase_37 AC 181 ms
6,940 KB
testcase_38 AC 67 ms
6,948 KB
testcase_39 AC 182 ms
6,944 KB
testcase_40 WA -
testcase_41 AC 188 ms
6,944 KB
testcase_42 AC 174 ms
6,940 KB
testcase_43 AC 178 ms
6,940 KB
testcase_44 AC 179 ms
6,940 KB
testcase_45 AC 175 ms
6,940 KB
testcase_46 AC 175 ms
6,944 KB
testcase_47 AC 176 ms
6,940 KB
testcase_48 AC 169 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#define P pair<int,int>
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<n;i++)
#define all(v) v.begin(),v.end()
#define pb push_back
template<class T,class U>
inline bool chmax(T &a,U b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
template<class T,class U>
inline bool chmin(T &a,U b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
constexpr int INF=1000000000;
constexpr ll llINF=1000000000000000000;
constexpr int mod=1000000007;
constexpr double eps=1e-8;
const double pi=acos(-1);
int dx[]={0,1,0,-1},dy[]={1,0,-1,0};
int Random(int mi,int ma){
    random_device rnd;
    mt19937 mt(rnd());//32bit
    //[mi,ma]
    uniform_int_distribution<int>engine(mi,ma);
    return engine(mt);
}
/*
vector<vector<ll>>C,sC;
void init_comb(int n,int m){
    C.resize(n+1,vector<ll>(m+1,0));
    sC.resize(n+1,vector<ll>(m+1,0));
    C[0][0]=1;
    for(int i=1;i<=n;i++){
        C[i][0]=1;
        for(int j=1;j<=m;j++){
            C[i][j]=(C[i-1][j-1]+C[i-1][j])%mod;
        }
    }
    rep(i,n+1){
        rep(j,m){
            sC[i][j+1]=(sC[i][j]+C[i][j])%mod;
        }
    }
}*/
ll gcd(ll a,ll b){
    while(a%b){
        a%=b;
        swap(a,b);
    }
    return b;
}
ll lcm(ll a,ll b){
    return a/gcd(a,b)*b;
}
bool prime(int a){
    if(a==1)return false;
    for(int i=2;i*i<=a;i++){
        if(a%i==0)return false;
    }
    return true;
}
ll modpow(ll a,ll b){
    ll res=1;
    while(b){
        if(b&1){
            res*=a;
            res%=mod;
        }
        a*=a;
        a%=mod;
        b>>=1;
    }
    return res;
}
vector<ll>inv,fact,factinv;
void init_fact(int n){
    inv.resize(n+1);
    fact.resize(n+1);
    factinv.resize(n+1);
    inv[0]=0;
    inv[1]=1;
    fact[0]=1;
    factinv[0]=1;
    for(ll i=1;i<=n;i++){
        if(i>=2)inv[i]=mod-((mod/i)*inv[mod%i]%mod);
        fact[i]=(fact[i-1]*i)%mod;
        factinv[i]=factinv[i-1]*inv[i]%mod;
    }
}
ll _inv(ll a,ll m=mod){
    //gcd(a,m) must be 1
    ll b=m,u=1,v=0;
    while(b){
        ll t=a/b;
        a-=t*b;swap(a,b);
        u-=t*v;swap(u,v);
    }
    u%=m;
    if(u<0)u+=m;
    return u;
}
ll comb(int a,int b){
    if(a<b)return 0;
    if(a<0)return 0;
    return fact[a]*factinv[a-b]%mod*factinv[b]%mod;
}
ll multicomb(int a,int b){
    return comb(a+b-1,b);
}
int dp[100010],r=400,b[401][401];
int main(){
    int n,a[100010];
    cin>>n;
    rep(i,n)cin>>a[i];
    dp[0]=1;
    rep(i,n){
        for(int j=1;j<=r;j++){
            int k=i%j;
            dp[i]+=b[j][k];
            dp[i]%=mod;
        }
        if(a[i]<=r){
            b[a[i]][i%a[i]]+=dp[i];
            b[a[i]][i%a[i]]%=mod;
            if(a[i]>1){
                dp[i+1]+=dp[i];
                dp[i]%=mod;
            }
        }
        else{
            for(int j=i+a[i];j<n;j+=a[i]){
                dp[j]+=dp[i];
                dp[j]%=mod;
            }
            dp[i+1]+=dp[i];
            dp[i]%=mod;
        }
    }
    cout<<dp[n-1]<<endl;
    return 0;
}
0