はまやんはまやんはまやん

hamayanhamayan's blog

575検出するやつ [yukicoder No.558]

https://yukicoder.me/problems/no/558

解説動画

準備中

解説

https://yukicoder.me/submissions/199784

先頭から3つずつ順番にチェックしていき"575"があれば、YESと返す。

string S;
string solve() {
    int N = S.length();
    rep(i, 0, N - 2) {
        string s = S.substr(i, 3);
        if (s == "575") return "YES";
    }
    return "NO";
}
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> S;
    cout << solve() << endl;
}