比赛 cmath生日赛 评测结果 AAAAAAAAAA
题目名称 RGB灯泡 最终得分 100
用户昵称 xzcxzc11 运行时间 0.067 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2017-06-13 20:28:45
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cmath>
#include <stack>
//#define DEBUG

using namespace std;

const char color[3] = {'R', 'G', 'B'};

int main()
{
    freopen("lightt.in", "r", stdin);
    freopen("lightt.out", "w", stdout);
    int n;
    long long m;
    cin >> n >> m;
    int cur;
    stack<int> sta;
    cur = m % 3;
    sta.push(cur);
    for (int i = 1; i < n; ++i)
    {
        m /= 3;
        cur = m % 3;
        sta.push(cur);
    }

    int temp;
    while (!sta.empty())
    {
        temp = sta.top();
        sta.pop();
        cout << color[temp];
    }
    return 0;
}