Time Exceeded
Code
#include <iostream>
#include <string>
using namespace std;
void solve(int k){
string pens="RGB";
for(int i=0; i<k; i++){
if(i%2==0){
char temp;
temp=pens[1];
pens[1]=pens[0];
pens[0]=temp;
}
else{
char temp;
temp=pens[1];
pens[1]=pens[2];
pens[2]=temp;
}
}
cout << pens << endl;
}
int main() {
int T;
cin >> T;
while (T--) {
int k;
cin >> k;
solve(k);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1010 Red Green Blue
- Contest
- Brain booster - 1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2023-12-31 15:07:50
- Judged At
- 2024-11-11 03:45:58
- Judged By
- Score
- 80
- Total Time
- ≥1006ms
- Peak Memory
- ≥548.0 KiB