这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; long long a[101][101],h_row,h_col,n,m; int NotDanger(int row,int col){ if(row==h_row&&col==h_col) return 0; if(row==h_row-1…
在讨论《WHY??? 0 score??????》回复:
@[佚_名](/space/show?uid=101484) ???
在讨论《WHY??? 0 score??????》回复:
转换进制 我會
在讨论《WHY??? 0 score??????》回复:
@[佚_名](/space/show?uid=101484) NO 可以說一下?
在讨论《WHY??? 0 score??????》回复:
@[佚_名](/space/show?uid=101484) 是的 我不會數制加减
在讨论《WHY??? 0 score??????》回复:
@[xuyouchen](/space/show?uid=70093) 会等于0啊
```cpp #include using namespace std; int change(int n){ int s=n,t=0; while(s!=0){ t=s%10+t*10; s/=10; } return t; } int main(){ int n,m,step,ans=0,c=0; bool fla…
```cpp #include using namespace std; int a[9][9],numb[9][9],n; int max(int a,int b){ if(a>b) return a; return b; } bool NotDanger(int row,int col){ // if(row==n…
在讨论《不明白错什么求AC大大幫幫小弟》回复:
@[Steve_braveman](/space/show?uid=96570) 打错了没输出等式得60分:)
在讨论《不明白错什么求AC大大幫幫小弟》回复:
@[Steve_braveman](/space/show?uid=96570) 输出等式得60分:)
```cpp #include using namespace std; long long a[101][101],h_row,h_col,n,m; int NotDanger(int row,int col){ if(row==h_row&&col==h_col) return 0; if(row==h_row-1…
```c #include int pravire[11]={6,2,5,5,4,5,6,3,7,6}; char test; int SUM(int x){ int m1,sum=0; if(x==0) return 6; while(x!=0){ m1=x%10; sum+=pravire[m1]; x/=10;…
在讨论《TLE 40 分 求解》回复:
@[nothingness](/space/show?uid=31317) 有DP教学? 只学过DFS...
```cpp #include #include #include using namespace std; int row[10000],col[10000],p,n,m,hx[10000],hy[10000],a[10000],hxp,hyp,count; int f(int k) { int flag1 = 0,…
在讨论《求解C++的!!》回复:
为何我发的CODE不工整呢??
#include using namespace std; int f2(int n) { if(n==1) return n; return n*f2(n-1); } int f(int n){ int result=0; int count = n; while(count>0) { result = f2(cou…