这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
只有核心部分是我写的 其它是ai 所以有些注释 ```c #include #include int max4(int a, int b, int c, int d) { int temp = a > b ? a : b; temp = temp > c ? temp : c; temp = temp > d ? te…
在讨论《60分超时求助》回复:
@[glx123](luogu://user/991551)过了 感谢
```c #include int main() { long long n; scanf("%lld",&n); for(long long i=n-2;i>=1;i-=2) { if(n%i==0) { printf("%lld",i); return 0; } } } ```
在讨论《c语言非要超时吗!》回复:
@[Zgz761028](luogu://user/1821402)@[complete_binary_tree](luogu://user/683859) 过了 感谢
求修改 ai让我在此基础上 在函数里面再加一个while以处理较大的数据 然而原来超时的测试点依旧超时 ai也曾经让我在主函数第二个while也用二分法 然而这个while不会超过三次 我感觉完全没必要 ```c #include int huan(int chu)//输入一开始有几个 输出最后能吃几个 { int k…