这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《40分求助!》回复:
@[Register_int](/user/406941) 终于!过了!谢谢!
在讨论《40分求助!》回复:
@[andy561](/user/377667) 所以,怎么改?(谢谢
```cpp #include #include using namespace std; int n,m; int a[1010][1010]; int b[1010][1010]; int main() { cin >> n >> m; memset(b,0,sizeof(b)); memset(a,0,sizeo…
在讨论《求助,第四个点tle》回复:
@[159号程序员](/user/334586)
在讨论《求助,5个点MLE》回复:
@[159号程序员](/user/334586)
在讨论《求助》回复:
@[159号程序员](/user/334586)
```c #include #include #include #include using namespace std; int a,b; int main() { cin >> a >> b; int x = a; int y = b; int ans = 0; ans = max(ans, (x % 100 +…
```c #include #include #include using namespace std; int n,m; int dx[4]={0,0,1,-1}; int dy[4]={1,-1,0,0}; int h[110][110]; int rec[110][110]; int ans = 0; int f…
在讨论《举报》回复:
我承认这道题我用c++没有满分,就用了py来做,并且ac了,而且,第一篇题解是c++……
在讨论《举报》回复:
我py学没学过你咋那么清楚???我py是2019年就已经学了的,只是现在也在学c++罢了,明明py一行可以解决的代码我为什么一定要大费周章用c++做呢?
在讨论《求助,第四个点tle》回复:
@[159号程序员](/user/334586)
```c #include #include #include using namespace std; int a[10][10]; bool h[10][10],w[10][10],g[10][10]; void dfs(int p) { int x = p / 9; int y = p % 9; int k =…
在讨论《90分求助!第9个点tle》回复:
@[159号程序员](/user/334586) 提前break?
```c #include using namespace std; int m,w[30],k = 0; bool flag; void dfs(int step,int l1,int l2,int l3,int l4) { if(flag == true)return; if(l1 > k || l2 > k ||…
在讨论《还有哪些题目要题解啊?》回复:
感谢各位
在讨论《求助大佬,关于OI赛制查错各位有什么经验吗》回复:
感谢各位,考试加油!
在讨论《求助大佬,关于OI赛制查错各位有什么经验吗》回复:
@[Missa](/user/443664) 啊对对对!我第一次永远写不对
在讨论《【OI 无关】如何写一篇好作文》回复:
@[159号程序员](/user/334586) 搞数理化?我觉得你数学真的不错
在讨论《小白求助,只有最后一个点超时》回复:
ac了,谢谢各位大佬(998900是偶数,改成了998901
在讨论《小白求助,只有最后一个点超时》回复:
@[する](/user/243672) 变成小白表示:我懵了
在讨论《小白求助,只有最后一个点超时》回复:
@[FriskLSZ](/user/420692) 但我好像就是这样的。。。
在讨论《小白求助,只有最后一个点超时》回复:
@[FriskLSZ](/user/420692) 感谢
源代码如下 ```c #include using namespace std; bool hw(long long x) { long long y = x; long long num = 0; while(y > 0) { num = num * 10 + y % 10; y /= 10; } if(num ==…
在讨论《暴力枚举求助 cmp函数不太对》回复:
@[xzy090626](/user/562119) ac了!!!万分感谢
在讨论《暴力枚举求助 cmp函数不太对》回复:
@[xzy090626](/user/562119) 谢谢
在讨论《暴力枚举求助 cmp函数不太对》回复:
@[xzy090626](/user/562119) 我知道这错了,但不会改
```c #include #include using namespace std; struct Num { int id,cnt = 0; }; Num x[100]; void cmp(Num x,Num y) { if(x.cnt != y.cnt)return x.cnt > y.cnt; else ret…