WA声一片
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在文章《CSP-S2024游寄》发表评论:
我连-J初赛都过不了
在文章《CSP-S2024游寄》发表评论:
www
在讨论《一RE一WA》回复:
分
在讨论《一RE一WA》回复:
84
在讨论《一RE一WA》回复:
@[Fat__Cat](luogu://user/1289619)可还是1WA ```cpp #include using namespace std; char num[111111]; unsigned long long a[11111], b, c[11111], l1, l2; int main() { sc…
```cpp #include using namespace std; char num[1111]; int a[1111], b, c[1111], l1, l2; int main() { scanf("%s", num + 1); l1 = strlen(num + 1); for (int i = 1; i…
在文章《题解:P1096 [NOIP2007 普及组] Hanoi 双塔问题》发表评论:
无敌了
在文章《针对 P1001 A+B Problem 的大炮使用手册》发表评论:
我勒个优化成了O(nlongn),我还以为没优化前的复杂度是O(n²)
在文章《题解:P1001 A+B Problem》发表评论:
用模拟汇编做!!!???
在文章《P1001 A+B Problem 题解》发表评论:
真《Stop learning useless algorithms, go and solve some problems, learn how to use binary search》
在文章《题解:P1001 A+B Problem》发表评论:
那人真牛
在文章《题解:P1001 A+B Problem》发表评论:
好家伙,我让deepseek解读代码然后...然后...就没有然后了...deepseek干冒烟了...硬是玩了4分钟
在讨论《what?》回复:
@[liuyuhan1522](luogu://user/1435840)时间复杂度最高的达到了277ms
在讨论《what?》回复:
虽然我的方法很原始
为什么大家开long long就能过我偏偏开了unsigned long long才过 ```cpp #include using namespace std; unsigned long long n, ans; int main() { cin >> n; for (unsigned long long i = 1…
在文章《题解:P1304 哥德巴赫猜想》发表评论:
不是,你无敌了
在文章《题解:P1217 [USACO1.5] 回文质数 Prime Palindromes》发表评论:
6打表有亿点点麻烦
在文章《题解:P1158 [NOIP2010 普及组] 导弹拦截》发表评论:
和我的代码几乎一样wuwuwuwuwuwuwu
在文章《题解:P1158 [NOIP2010 普及组] 导弹拦截》发表评论:
www
在讨论《95分求调》回复:
已过,互关
```cpp #include using namespace std; long long x, y, a, b; int main() { cin >> x >> y >> a >> b; if (x * a INT_MAX || x * a > INT_MAX || y * b < INT_MIN) cout <…
在文章《题解:P1158 [NOIP 2010 普及组] 导弹拦截》发表评论:
看不懂
在讨论《80分求调》回复:
@[Orange0628](luogu://user/980202)习惯用if做呢
在讨论《80分求调》回复:
谢谢,已AC,都关注了
```cpp #include using namespace std; int x; int main() { cin >> x; if (x % 2 == 0 && (x > 4 && x 4 && x 12)) || (x % 2 != 0 && (x > 4 && x 12)) cout << "1" << e…
在讨论《84分求救!!!》回复:
```cpp #include using namespace std; double n, sum; int main() { scanf("%lf", &n); if (n < 5)sum = -n + 2.5; else if (n < 10)sum = 2 - 1.5 * (n - 3) * (n - 3);…
```cpp #include using namespace std; int m, n, a[555], sum; int main() { scanf("%d%d", &m, &n); for (int i = 1 ; i <= n ; i ++) scanf("%d", a[i]); for (int i =…
在讨论《为什么不行啊》回复:
```cpp #include using namespace std; int k, n = 1; double sum = 1; int main() { scanf("%d", &k); while (sum <= k) { n ++; sum += (float)1 / n; } printf("%d", n)…
在讨论《老实了,为啥错》回复:
```cpp #include using namespace std; int a[55], n, sum; int main() { for (int i = 1 ; i <= 10 ; i ++) scanf("%d", &a[i]); scanf("%d", &n); n += 30; for (int i =…