Accepted
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
for (int i = 0; i < t; i++)
{
int x, mod;
cin >> x;
mod = x % 6;
string clrs = "RGB";
for (int i = 1; i <= mod; i++)
{
if (i % 2 != 0)
{
char tmp = clrs[0];
clrs[0] = clrs[1];
clrs[1] = tmp;
}
else
{
char tmp = clrs[1];
clrs[1] = clrs[2];
clrs[2] = tmp;
}
}
cout << clrs << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1010 Red Green Blue
- Contest
- Brain booster - 1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2023-12-31 15:38:58
- Judged At
- 2024-11-11 03:45:28
- Judged By
- Score
- 100
- Total Time
- 3ms
- Peak Memory
- 532.0 KiB