请求加强数据

P1044 [NOIP2003 普及组] 栈

注意AT方式,还有加强理由
by 2017zc @ 2018-10-05 09:08:19


不要怀疑一道6400人通过的题
by skiy_gyx @ 2018-10-05 09:09:56


+1
by 花满楼_落枫 @ 2019-01-25 14:34:00


@石破天惊我觉得不用加强。因为用阶乘的我就是20分。[不信你看](https://www.luogu.com.cn/record/28078522) 代码如下: ```cpp #include <bits/stdc++.h> using namespace std; int j(int n){ if(n<2) return 1; return n*j(n-1); } int main(){ int n; cin>>n; if(n==0) cout<<0; else cout<<j(n)-1; return 0;} //能AC&&&!!! ```
by fz20181223 @ 2019-12-03 22:36:37


|