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

hamayanhamayan's blog

解法破綻!高橋君 [yukicoder 932]

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

解説

https://yukicoder.me/submissions/402564

便利なカンマで分割する関数を作ろう。
(この機に作ると主にyukicoderで役に立つ。自分が使ってるやつも借りてきたやつなんですけどね)

string S;
//---------------------------------------------------------------------------------------------------
#define yes "Done!"
#define no "Failed..."
void _main() {
    cin >> S;
    auto v = split(S, ",");

    fore(s, v) if (s != "AC") {
        cout << no << endl;
        return;
    }

    cout << yes << endl;
}