1 条题解

  • 0
    @ 2024-10-28 19:25:06

    参考答案:

    #include <iostream>
    #include <string>
    using namespace std;
    char s[10];
    int main()
    {
        int t;
        cin >> t;
        int n;
        while (t--)
        {
            cin >> n;
            while (n)
            {
                int a;
                scanf("%5d", &a);
                s[0] = a / 26 / 26 + 'a';
                s[1] = a / 26 % 26 + 'a';
                s[2] = a % 26 + 'a';
                n -= 5;
                cout << s;
            }
            cout << endl;
        }
        return 0;
    }
    
    • 1

    信息

    ID
    5430
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    9
    已通过
    4
    上传者