比赛 cmath生日赛 评测结果 AAAAAAAAAA
题目名称 RGB灯泡 最终得分 100
用户昵称 WildRage 运行时间 0.047 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2017-06-13 19:19:12
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<stack>
using namespace std;
int n;
long long m;
int main()
{
    freopen("lightt.in","r",stdin);
    freopen("lightt.out","w",stdout);
    stack<int> st;
    scanf("%d%lld",&n,&m);
    int i=1;
    while(i<=n){
        st.push(m%3);
        m/=3;
        i++;
    }
    int a;
    for(i=1;i<=n;i++){
        a=st.top();st.pop();
        if(a==0)putchar('R');
        if(a==1)putchar('G');
        if(a==2)putchar('B');
    }
}