Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int n;
cin >> n;
n %= 4;
string s = "RGB";
while (n--) {
swap(s[0], s[1]);
if(n > 0) {
swap(s[1], s[2]);
n -= 1;
}
}
cout << s << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1010 Red Green Blue
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-12 04:30:54
- Judged At
- 2024-11-11 03:26:56
- Judged By
- Score
- 20
- Total Time
- 2ms
- Peak Memory
- 448.0 KiB