2 条题解

  • 1
    @ 2025-3-30 18:50:48
    #include <iostream>
    #define endl '\n'
    using namespace std;
    
    int main() {
        string s;
        cin >> s;
        for (int j = 1; j <= 5; j++) {
            for (int i = 0; i < s.size(); i++) {
                if (s[i] == '0') {
                    if (j == 1 || j == 5)
                        cout << ".....";
                    else
                        cout << ".***.";
                } else if (s[i] == '1') {
                    cout << "****.";
                } else if (s[i] == '2') {
                    if (j % 2)
                        cout << ".....";
                    else if (j == 2)
                        cout << "****.";
                    else
                        cout << ".****";
                } else {
                    if (j % 2)
                        cout << ".....";
                    else
                        cout << "****.";
                }
            }
            cout << endl;
        }
        return 0;
    }
    

    信息

    ID
    35277
    时间
    1000ms
    内存
    512MiB
    难度
    2
    标签
    递交数
    12
    已通过
    6
    上传者