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

hamayanhamayan's blog

C0nvertPr0b1em [yukicoder No.676]

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

解法

https://yukicoder.me/submissions/254271

題意通りに変換して出力する。
c++なら以下のように実装する。

string S;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> S;
    fore(c, S) {
        if (c == 'I') c = '1';
        if (c == 'l') c = '1';
        if (c == 'O') c = '0';
        if (c == 'o') c = '0';
    }
    cout << S << endl;
}