这题数据太水了吧,同机房的一个判断加一个特判就过了
#include <bits/stdc++.h> using namespace std; long long x, y; int main() { cin >> x; if (x % 33 == 0 && x % 2 != 0) { cout << 'o'; return 0; } if (x % 2 == 0) cout << 'o'; else cout << 'm'; return 0; }