Time Exceeded
Code
#include <iostream>
#include <string>
using namespace std;
int main() {
    int T;
    cin >> T;
    while (T--) {
        int k;
        cin >> k;
        string pens = "RGB";
        for(int i=0; i<k; i++){
            if(i%2==0){
                swap(pens[0],pens[1]);
            }
            else{
                swap(pens[1],pens[2]);
            }
        }
        cout << pens << endl;
    }
    return 0;
}Information
- Submit By
- Type
- Submission
- Problem
- P1010 B. Red Green Blue
- Contest
- Brain booster - 1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2023-12-31 14:48:42
- Judged At
- 2024-11-11 03:46:08
- Judged By
- Score
- 80
- Total Time
- ≥1091ms
- Peak Memory
- ≥536.0 KiB