My Solution
易错
对于 0 0 这组数据要进行特殊的判断,比赛的时候用这组数据hack了十几个人,
当时这个有趣的题忘了记录下来了,现在补上,^_^
#include
#include
#include
using namespace std;
typedef long long LL;
const int maxn = 1e6 + 8;
int main()
{
#ifdef LOCAL
freopen("a.txt", "r", stdin);
//freopen("a.out", "w", stdout);
int T = 4;
while(T--){
#endif // LOCAL
ios::sync_with_stdio(false); cin.tie(0);
LL a, b;
cin >> a >> b;
if(a == 0 && b == 0) cout << "NO" << endl;
else if(abs(a - b) <= 1) cout << "YES" << endl;
else cout << "NO" << endl;
#ifdef LOCAL
cout << endl;
}
#endif // LOCAL
return 0;
}
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
https://www.prolightsfxjh.com/
Thank you!
------from ProLightsfx
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
如经许可后转载,请注明出处:https://prolightsfxjh.com/article/codeforces-round-394-div-2-a-dasha-and-stairs/
共有 0 条评论