https://products.sint.co.jp/hubfs/resource/topsic/pgb/1-2.pdf
解説
入力例で正しいことしか確認できていません!落ちる可能性ありますので、ご注意ください
rep(i,a,b)はfor (int i=a; i < b; i++)です。
SがAtCoderと等しい場合は、C++であれば、==演算子でそのまま行える。
大小の違いを除いての場合は、全部小文字に直して比較すればいい。
stdのtranslateを使ってもいいし、面倒なら、tolowerを使って1文字ずつ比較してもいい。
そうでないならNo
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ string S; string atcoder = "AtCoder"; //--------------------------------------------------------------------------------------------------- string solve() { if (S == atcoder) return "Yes"; rep(i, 0, 7) if (tolower(S[i]) != tolower(atcoder[i])) return "No"; return "Maybe"; } //--------------------------------------------------------------------------------------------------- void _main() { cin >> S; cout << solve() << endl; }