超时了

chenjiangxue 逗比 2019-10-06 10:43:44 6

#include<bits/stdc++.h> using namespace std; const int maxn = 1005; int n,f[maxn]={1},ans; int main() { freopen("count.in","r",stdin); freopen("count.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++) for(int j=0;j<=i/2;j++) f[i] += f[j]; cout<<f[n]<<endl; return 0; }

{{ vote && vote.total.up }}

共 2 条回复

root 站长

以前的题目改了,直接去交吧。

root 站长

恩,这个数据给的有点大,我修改一下吧,原题是1000的!