关于数据需加强
2024-08-06 09:59:30
发布于:四川
55阅读
0回复
0点赞
n<=9打表都能过
全部评论 3
一眼萌新 有输出限制的
2024-10-02 来自 广东
0已经有 个字符了,你打表试试
2024-10-02 来自 广东
0一共 行
2024-10-02 来自 广东
0#include <bits/stdc++.h>
using namespace std;template <typename T> inline void read(T &x)
{
x=0;int f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);c=getchar()) x=(x<<1)+(x<<3)+(c^48);
x*=f;
}template <typename T> void print(T x)
{
if(x<0) x=-x,putchar('-');
if(x>9) print(x/10);
putchar(x%10+48);
}2024-10-04 来自 四川
0
如果增加到20需要2770105571853600001行(2.770105571853600×10^18),快超出long long范围
2024-09-22 来自 广东
0高精优化
2024-10-02 来自 四川
0
但是打表至少要1!+2!+3!+..+9!=4037913行,会卡爆的,四百多万
2024-09-22 来自 广东
0
有帮助,赞一个