牛客小白月賽95 (賽前的練習之我是小菜雞)

Iter-moon發表於2024-05-31

今天出題的速度越有提升

A.相遇

題意:

剪刀石頭布

思路:

不難發現 a == b 平局 (a + 1) % 3 == b的時候a 贏 其他 b贏

Code:

#include<bits/stdc++.h>
    
using namespace std;
    
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int a, b; cin >> a >> b;
    if (a == b) cout << 'p';
    else if ((a + 1) % 3 == b % 3) cout << 'a';
    else cout << 'b';
    return 0;
}

  

相關文章