Codeforces Round #394 (Div. 2) A. Dasha and Stairs 易错

ProLightsfx 2017-3-17 103 3/17
A. Dasha and Stairs 易错

My Solution

易错

对于 0 0 这组数据要进行特殊的判断,比赛的时候用这组数据hack了十几个人,Codeforces Round #394 (Div. 2) A. Dasha and Stairs 易错

当时这个有趣的题忘了记录下来了,现在补上,^_^

 

#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

- THE END -

ProLightsfx

11月17日01:35

最后修改:2024年11月17日
0

非特殊说明,本博所有文章均为博主原创,未经许可不得转载。

共有 0 条评论