这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《纬纱~》回复:
@[ktq_cpp](/user/454955) 好的,谢谢,过了
在讨论《纬纱~》回复:
@[ktq_cpp](/user/454955) 试了,加不加‘=’都一样
在讨论《纬纱~》回复:
好吧,知道了,stack最大是5*10^5,再多就会爆
在讨论《纬纱~》回复:
好吧,知道了,stack最大是5*10^6,再多就会爆
# 1~6 AC 7~10 WA ```cpp #include #include using namespace std; stack tmp;//下标载入 int a[5000010],ans[5000010]; int main() { int n; cin >> n; for(int i = 1;i > a[i…
在讨论《50pts崩溃求调》回复:
@[cengzh](/user/640816) 好的,谢谢
在讨论《50pts崩溃求调》回复:
@[Code_Rime](/user/1152158) 而且无论在哪编译,都无法编译,还不知道问题所在,不显示ψ(*`ー´)ψ
在讨论《50pts崩溃求调》回复:
@[zhoufangyouxi](/user/1419446) 不是AI(^_−)☆
在讨论《50pts崩溃求调》回复:
@[cengzh](/user/640816) 我改过,dp数组在外面定义就CE不知道为啥,只有这样才有分o(╥﹏╥)o
在讨论《50pts崩溃求调》回复:
@[crz_qwq](/user/795344) 那个,不是AI生成的,是我直接复制的力扣上的代码,小改了一下,不信的话我上面有力扣题号,可以去看一下 力扣P1135
 不知道哪里错了,在力扣是过的 ```cpp //力扣1143 #include using namespace std; #define int long long #define maxn…
```cpp #include #include using namespace std; const int N = 100; int m , p[N] ,c[N] , ans = 0; const int MAX_N = 100; int v[MAX_N],prime[MAX_N],k; void Linear_S…
在讨论《Subtask 0 全对,Subtask 1 WA,也不知道哪里错了》回复:
@[a11223344](/user/1324135) 而且结果为0的情况试了,没错啊
在讨论《Subtask 0 全对,Subtask 1 WA,也不知道哪里错了》回复:
能不能给个数据帮助一下,谢谢了
在讨论《Subtask 0 全对,Subtask 1 WA,也不知道哪里错了》回复:
求Subtask 1 数据
```cpp #include #include #include #include #include using namespace std; #define int long long int check(char c)//判断优先级 { switch(c) { case '+':return 1; case '-…
```cpp #include #include using namespace std; vector a; int main() { int n,tmp,ans = 0,res = 1; cin >> n; for(int i = 1;i 0) { if(tmp % 3 == 1){ans++;break;} el…
```cpp #include #include #define int long long using namespace std; int change(int x,int base) { int tmp = 0; int i = 0; while(x >= 10) { tmp += (x % 10) * pow(…
```cpp #include using namespace std; int main() { int n; cin >> n; int tmp[n],m = 0 ; bool a = 1; for(int i = 11; i <= n;i++)//所有质数集合 { for(int j = 2;j <= sqrt(…
```cpp #include using namespace std; int main () { float a,b,c; double q; cin>>a>>b>>c; if((b*b-4*a*c)>0) { q=sqrt(b*b-4*a*c); if(a 0) printf("x1=%.5lf;x2=%.5lf…