SBBSH||叽里咕噜说什么呢 跟我的感!激!放!大!(多谢款待)说去吧!!!||期末不年级前30不改签||小号abab_qwq
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《关于试题》回复:
qp
在讨论《45求调》回复:
```cpp #include using namespace std; long long a[1000005]; int main(){ long long n,k,sum=0; cin>>n>>k; for(int i=1;i >a[i]; if(i==k){ sum-=a[i]; } else{ sum+=a[…
``` #include #define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) using namespace std; using ll=long long; const int N=3e5+10; string s; string t="#"; ll…
在讨论《为什么只给75分?》回复:
因为前面有 $0$ 也要输出
在讨论《112pts求助》回复:
%%%
在讨论《做法奇特》回复:
为什么要这么复杂
在讨论《em目前不知道怎么改怪怪的》回复:
@[MrHR](luogu://user/1647601)要开`long long`
在讨论《em目前不知道怎么改怪怪的》回复:
求关 ```cpp #include int main() { double a; long long b; scanf("%lf",&a); b=(long long)a; printf("%lld",b); return 0; }
在讨论《请求帮忙》回复:
那你倒是把代码发出来啊
在讨论《无语了》回复:
```cpp #include using namespace std; int main() { double F; cin>>F; double C=5*(F-32)/9.0; printf("%.5lf",C); return 0; }
在讨论《样例过了,但是全wa,求助》回复:
```cpp #include using namespace std; void solve(){ int world[27][27][27]; memset(world,0,sizeof(world)); int w,x,h; cin>>w>>x>>h; int q; cin>>q; int x_1,x_2,x_3…
在讨论《一个能AC但有问题的代码》回复:
@[ZYH20121226](luogu://user/1706349)?
在讨论《一个能AC但有问题的代码》回复:
什么问题
在讨论《NOIP2026出题人猜测》回复:
彳亍
在文章《NOIp 2025 幽寂》发表评论:
巧克力好吃
在讨论《有没有代码很短的水紫》回复:
P14593
在讨论《不知道还有没有要改的地方》回复:
``` 我们先让 $k=n^2-k$,即想办法让 $k$ 个格子**无法逃出迷宫**。 显然当 $k=1$ 时无解,因为 $1$ 个格子无法形成死循环。 可以让这 $k$ 个格子连在一起,互相形成死循环,且位于迷宫的最顶端,并让其他的格子均为 $D$,即 | | | | | | | :-: | :-: | :-: |…
在讨论《关于 5:4:1 的“轻食模式”》回复:
思维量和码量都比较大的红题
在讨论《为什么?》回复:
其实是不想让你骗分
在讨论《球球大佬们看看哪里有问题》回复:
求关 ```cpp #include #include using namespace std; int main() { char a[55] = { 0 }; int n; string s; int x; cin >> n; cin >> s; for (int i = 0; i 122) // { // x =…
在讨论《70分求助》回复:
```cpp #include using namespace std; int a, b, c = 0; int main() { cin >> a >> b; for (int i = 1; i 0) { if (num % 10 == b) { c++; } num = num / 10; } if (i ==…
在讨论《tle求条》回复:
@[summer0703](luogu://user/1638023)@[ouxiyao](luogu://user/1155764)感恩dalao已关
```cpp #include using namespace std; using ll=long long; ll n,a,s; int r() { ll f=1,k=0; char c=getchar(); while(c '9') { if(c=='-')f=-1; c=getchar(); } while(c…
在讨论《我该怎么办?T口T》回复:
?在讨论区发布无关内容
在文章《题解:P14574 批话哥》发表评论:
可恶没抢过
## [PROBLEM](https://www.luogu.com.cn/problem/P14574) ## 题目大意 给出 $n,m,k,l,r$,接下来 $k$ 行,输入 $x,y,v$ 若 $v \le l$,则 $x$ 在 $y$ 题获得 $100$ 分,若 $v \ge r$ 则 $x$ 在 $y$ 题获…
在讨论《全WA,求解答》回复:
其实下面的部分可以用循环代替
在讨论《80求条》回复:
@[hyc42_Happiness](luogu://user/969322)%%%
```cpp #include using namespace std; using ll=long long; ll n,p; ll qp(ll a,ll b) { ll s=1; while(b) { if(b&1)s=s*a%p; a=a*a%p; b>>=1; } return s; } int main()…
在讨论《34分求调》回复:
$O(n^{2})$会T