J

Jastion

#1409772

一坨初一の抽象蒟蒻

发帖
15
文章
1
互动
18
陶片
0
获赞
0
收藏
0

历史用户名外显

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

  1. Jastion
    最早追溯到 2024/12/31最后捕获于 2025/12/03
  2. OLdJoeBrand
    最早追溯到 2024/08/31最后捕获于 2024/08/31
  3. OLdJoeBrand
    最早追溯到 2024/08/22最后捕获于 2024/08/22

时间线

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

  1. 发起讨论
    30pts求调

    ```cpp #include using namespace std; int n, m; int main() { cin >> n >> m; char map[n+5][m+5]; bool dig[n+5][m+5]; for (int i = 1; i > map[i][j]; int tmp = 0; f…

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

    在讨论50分求调回复:

    @[Ethan0824](luogu://user/1077096) thanks
  3. 发起讨论
    50分求调

    ```cpp #include #include #include using namespace std; struct Bigint { int len, val[1667]; Bigint(int x = 0) { memset(this->val, 0, sizeof this->val); for (this…

    回复 2参与人数 2
  4. 回复讨论
  5. 回复讨论

    在讨论TLE求调回复:

    @[shitinghao](luogu://user/1451609) 已关
  6. 回复讨论

    在讨论TLE求调回复:

    @[shitinghao](luogu://user/1451609) thanks~
  7. 发起讨论
    TLE求调

    硬着模拟加了个特判就过一个点(捂脸) ```cpp #include #include #include #include using namespace std; #define int long long bool check(int x) { if (x > n; string result = ""; int…

    回复 4参与人数 4
  8. 评论文章

    在文章题解:P1001 A+B Problem发表评论:

    哥们汇编虚拟机实测过吗?为啥刚开始跑就直接结束(⊙_⊙)?
  9. 回复讨论

    在讨论60pts 求调回复:

    @[dgz61](luogu://user/1064274) 没看到 QAQ
  10. 发起讨论
    60pts 求调

    是不是我把问题想的太简单了 awa? ```cpp #include using namespace std; #define int long long int climbStairs(int n) { if (n == 1) return 1; if (n == 2) return 2; int dp1 = 1,…

    回复 3参与人数 3
  11. 回复讨论

    在讨论逆天回复:

    @[Xiaonao_Dali](luogu://user/1076621)\ ...
  12. 发起讨论
    40分求助!!!

    [提交記錄](https://www.luogu.com.cn/record/223321840) 代碼: ```cpp #include using namespace std; int A, B, C; int main() { cin.tie(0), cout.tie(0) -> sync_with_stdio(…

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

    在讨论逆天回复:

    @[XuYueming](luogu://user/728079) 當時想到了 D=
  14. 回复讨论

    在讨论逆天回复:

    順帶提一嘴,同樣的代碼 Java 就不知道為啥能過
  15. 发起讨论
    逆天

    思路 and 邏輯全是對的,代碼就是只輸出三個 1\ ~~(奉上我的抽象代碼)~~ ```cpp #include using namespace std; struct TreeNode { int left, right; TreeNode(int left, int right) {left = left, ri…

    回复 7参与人数 7
  16. 发布文章
    题解:P4913 【深基16.例3】二叉树深度

    ~~这应该是最短的题解吧~~\ 思路全在代码里了\ ~~(本蒟蒻的第一篇题解,求通过)~~ ```cpp //Luogu Problems - P4913 #include using namespace std; const int MAXN = 1e6 * 10; //最大大小 struct Tree { //二叉…

    获赞 0评论 0
  17. 发起讨论
    又双叒叕WA辣

    ~~(该不会就我直接用链表来做吧)~~\ RE 和 TLE 捏(求调)\ ~~本蒟蒻的抽象代码~~: ```cpp #include #include using namespace std; template struct Node { _Tp data; Node* next; }; template void a…

    回复 0参与人数 1
  18. 发起讨论
    Why do me is wrong

    ```cpp #include #include using namespace std; int l1, r1, l2, r2, sum; int main() { scanf("%d%d%d%d", &l1, &r1, &l2, &r2); int mi = min(l1, l2), ma = max(r1, r2…

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

    在讨论建议降红回复:

    @[DerrickDong](luogu://user/1314719) 赞同赞同
  20. 回复讨论

    在讨论TLE咋搞?回复:

    @[_ChenZerui_](luogu://user/996867) 栓Q,过了([AC记录](https://www.luogu.com.cn/record/199909002))
  21. 发起讨论
    TLE咋搞?

    ```cpp #include using namespace std; long long t, n, a[int(1e5)]; int main() { cin >> t; while (t--) { bool flag = false; int cnt = 0; cin >> n; for (int i = 1;…

    回复 2参与人数 2
  22. 发起讨论
    50分求调

    ```cpp #include #include using namespace std; int n, arr[2000], sum; int main() { cin >> n; for (int i = 1; i > arr[i]; for (int i = 1; i <= n; i++) for (int j…

    回复 2参与人数 2
  23. 回复讨论

    在讨论求为啥WA回复:

    @[Lian_zy](luogu://user/923248) 我不会 =-)
  24. 发起讨论
    求为啥WA

    ```cpp #include #include using namespace std; int n, x, arr[19]; int nod(int num) { int sum = 0; while (num) { sum++; num /= 10; } return sum; } int main() { ci…

    回复 4参与人数 4
  25. 回复讨论

    在讨论求解释!!!回复:

    @[_WhiteDeer_](/user/768238) 啥情况?([评测记录](https://www.luogu.com.cn/record/174620498))
  26. 回复讨论

    在讨论求解释!!!回复:

    @[_WhiteDeer_](/user/768238) 我试了,只有最后一个是对的
  27. 发起讨论
    求解释!!!

    我刚开始代码是这样的: ```cpp #include using namespace std; int n,a; int main(){ ios::sync_with_stdio(false); cin>>n; while(n--){ cin>>a; bool flag=false; for(int x=1;x*x…

    回复 5参与人数 5
  28. 回复讨论

    在讨论为啥Unknown Error回复:

    @[mwglr](/user/1270073) 我就是绑定了的……
  29. 回复讨论

    在讨论为啥Unknown Error回复:

    @[ToastBread](/user/545809) \ 知道咧(我绑定了账号 $Atcoder$……)
  30. 回复讨论

    在讨论为啥Unknown Error回复:

    @[ToastBread](/user/545809) 我提交114514次也是一样啊