ID1129 谁能帮帮我这位菜鸡TLE加OLE

#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int x,y,j,t;
cin >> x >> y >> j >> t;
while (0 <= j <= x)
if(j * 2 + t * 4 == y)
cout << x << y;
else
j = j +1;
return 0;
}

为什么新人发帖不能看看发帖指南再发啊

2 个赞

把第 13 行的else去掉。
如果不去掉的话j的值就不会改变,导致第 11 行的if永远成立。这样就会死循环

谢谢

给个解决方案,谢谢。

给了

1 个赞