是金子总会发光,但是玻璃碴子只会反光
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; int s[1005][1005]; int main(){ int n,m,k,ans=-1; cin>>n>>m>>k; for(int i=1;i >s[i][j]; for(int i=1;i<=n-2;i++){ for(int j=1…
在讨论《15pts,老规矩闭关》回复:
@[yinuo8651](luogu://user/1381480) 谢谢
在讨论《15pts,老规矩闭关》回复:
~~真没招了~~
```cpp #include using namespace std; struct Students{ int x; int y; }; bool cmp(Students a,Students b){ if(a.x!=b.x) return a.x>b.x; if(a.y!=b.y) return a.y>b.y…
```cpp #include using namespace std; struct goods{ string name; int v; int price; }; bool cmpstr(string a,string b){ if(a+b>b+a) return false; else return true;…
在讨论《95分求调,闭关》回复:
@[many_](luogu://user/1312312) 蟹蟹
```cpp #include using namespace std; int s[100005]; int main(){ int n,p=0,maxx=0; cin>>n; for(int i=1;i >s[i]; sort(s+1,s+n+1); for(int i=1;i<=n;i++){ if(s[i]==…
在讨论《20分求调(会关)》回复:
@[wangboyue_740325](luogu://user/740325 感谢感谢
第2,第5个点对了 # ~~我也是没招了~~ ```cpp #include #define ll long long using namespace std; int main(){ int q; cin>>q; for(int i=1;i >n; n1=n; for(x=1;n1!=0;x++){ n1=n1/10…
```c #include using namespace std; int s[10005]; int main(){ int n,ans=0; cin>>n; for(int i=1;i >s[i]; sort(s+1,s+n+1); for(int i=n;i;i--) ans+=i*s[n-i+1]; cout…
在文章《题解:P1321 单词覆盖还原》发表评论:
@Dualvectorfoil 那输出时减一呗
在讨论《满江紫求调》回复:
@[v0id](luogu://user/1399499) 已过,蟹蟹
```cpp #include using namespace std; int cmp(string &a,string &b){ if(a+b>b+a) swap(a,b); } string s[25]; int main(){ int n; cin>>n; for(int i=1;i >s[i]; sort(s…