z

zjc1234

#1352164CCF 3 级

这名用户暂未设置签名。

发帖
3
文章
0
互动
36
陶片
1
获赞
0
收藏
0

历史用户名外显

追踪最近的用户名外显变动记录。

  1. zjc1234
    最早追溯到 2026/02/16最后捕获于 2026/02/16
  2. zjc1234
    最早追溯到 2026/02/11最后捕获于 2026/02/11
  3. zjc1234作弊者
    最早追溯到 2025/12/27最后捕获于 2025/12/27

时间线

最近的文章、讨论、云剪贴板与社区记录

  1. 回复讨论
  2. 回复讨论

    在讨论求助80分回复:

    要判断a>0@[LTY20241001](luogu://user/1612854)麻烦关注一下
  3. 回复讨论

    在讨论45分大佬求救,必找朋友一起关注。回复:

    @[lijianyan](luogu://user/2061870) 用二分,你这跟我之前一模一样,骗分用的。 要代码我发你。
  4. 回复讨论

    在讨论tle求调回复:

    @[he123456_](luogu://user/2061597)关注一下
  5. 回复讨论

    在讨论tle求调回复:

    @[he123456_](luogu://user/2061597) ```cpp #include using namespace std; int main(){ int x; cin>>x; int mx=-1; for(int i=2;i<=sqrt(x);i++){ while(x%i==0){ mx=max…
  6. 回复讨论

    在讨论5分,求条必关 1个AC 其他全WA回复:

    ma要清0@[o777777](luogu://user/1902922)
  7. 回复讨论
  8. 回复讨论
  9. 回复讨论

    在讨论90求助回复:

    @[ZR38X](luogu://user/2056251)数组开太小了,而且尽量不要在主函数里声明。
  10. 回复讨论

    在讨论5分求调,必关!!!回复:

    @[onefish_ycy](luogu://user/1168030) ```cpp #include using namespace std; const int N=20; char a[N][N]; bool check(int x1,int y1,int x2,int y2){ int s=0,s1=0; f…
  11. 回复讨论

    在讨论样例没过,求调必关!!!回复:

    @[onefish_ycy](luogu://user/1168030) 你要分3种情况讨论,他们的长度是否相同,或者相差1
  12. 回复讨论

    在讨论0分,求调,必关回复:

    @[wangyuze_](luogu://user/1819340) ```cpp #include using namespace std; int main(){ int n,a,b; cin>>n>>a>>b; for(int i=1;i<=n;i++){ cout<<"("<<a<<","<<i<<")"<<"…
  13. 回复讨论

    在讨论CE?回复:

    @[zet365](luogu://user/1250813) 我之前做[P1018](https://www.luogu.com.cn/problem/P1018) 用这个c++23也过不去,只能手打高精度
  14. 回复讨论

    在讨论CE?回复:

    @[zet365](luogu://user/1250813) 评测机不支持__int128.
  15. 回复讨论

    在讨论新手求助回复:

    ```cpp #include using namespace std; int main(){ char n; cin>>n; cout<<" "<<n<<" "<<endl<<" "<<n<<n<<n<<" "<<endl<<n<<n<<n<<n<<n; return 0; } ``` @[ISavetheWRLD…
  16. 回复讨论

    在讨论0分,条回复:

    题目意思看清楚@[L17392837055](luogu://user/1770776)
  17. 发起讨论
    [CSP-J 2020] 表达式55pts求调必关

    ```cpp #include using namespace std; string s; const int N=1e6+10; const double eps=1e-8; unordered_map pr; char sign[N];//表达式中i结点是什么符号 int val[N];//用一个val数组记录数…

    回复 1参与人数 1
  18. 回复讨论

    在讨论0pts求调回复:

    你这逻辑就好像不对啊。。。@[wangyanxi](luogu://user/1338197)
  19. 回复讨论

    在讨论10分求调回复:

    @[Evan12](luogu://user/1864612)能关注一下吗
  20. 回复讨论

    在讨论10分求调回复:

    用桶排序可以少一层循环。@[Evan12](luogu://user/1864612)
  21. 回复讨论

    在讨论0分,求救回复:

    ```cpp #include using namespace std; int main(){ int n; string a; cin>>n; for(int i=1;i >a; int b=a.length(); char max='0'; for(int j=0;j max) max=a[j]; } if(ma…
  22. 回复讨论

    在讨论全WA,但样例过了。回复:

    用double类型
  23. 回复讨论

    在讨论申请全站推荐一般需要多久审核?回复:

    @[gxyzstarsky](luogu://user/1773073) 1~7天
  24. 发起讨论
    60pts求调必关(不会数位DP)

    ```cpp #include using namespace std; int a[40]; bool fj(int x){ memset(a,0,sizeof a); int s=0; int i=0; while(x){ a[i]=x%2; x/=2; i++; } int s1=0,s0=0; for(int…

    回复 0参与人数 1
  25. 回复讨论

    在讨论这个跑下来有接近一半的测试点超时 请问该怎么办回复:

    @[aminose](luogu://user/2079502) ```cpp #include using namespace std; const int N=1e8+10; //flag 0 代表素数 否则为合数 int cnt; bool flag[N]; void init(int n){ flag[1]=1…
  26. 回复讨论

    在讨论50分求调,必关(QwQ)回复:

    ```cpp #include using namespace std; bool check(string b){ if(b.length() 12){ return 0; } bool c1=0,c2=0,c3=0,c4=0; for(int i=0;i ='a' && b[i] ='A' && b[i] ='0'…
  27. 回复讨论

    在讨论这个跑下来有接近一半的测试点超时 请问该怎么办回复:

    @[aminose](luogu://user/2079502) 现判断p是否为质数,若是,则把他的倍数标记为不是质数 ```cpp #include using namespace std; const int N=1e8+10; //flag 0 代表素数 否则为合数 int cnt; bool flag[N];…
  28. 回复讨论

    在讨论70pts求条,必关QWQ回复:

    远古时期的代码
  29. 回复讨论

    在讨论70pts求条,必关QWQ回复:

    ```cpp #include using namespace std; bool check(string b){ if(b.length() 12){ return 0; } bool c1=0,c2=0,c3=0,c4=0; for(int i=0;i ='a' && b[i] ='A' && b[i] ='0'…
  30. 回复讨论

    在讨论这个跑下来有接近一半的测试点超时 请问该怎么办回复:

    埃氏筛@[aminose](luogu://user/2079502)