/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 1ms 540.0 KiB
#5 Accepted 1ms 556.0 KiB

Code

#include <bits/stdc++.h>

#pragma GCC optimize("Ofast")
using namespace std;

void solve(int cs) {
  int lim = 6;
  vector<string> res;
  string s = "RGB";
  while (lim--) {
    swap(s[0], s[1]);
    res.push_back(s);
    if(lim > 0) {
      swap(s[1], s[2]);
      res.push_back(s);
      lim -= 1;
    }
  }
  int t;
  cin >> t;
  while (t--) {
    int n;
    cin >> n;
    n %= 6;
    if(n == 0) n = 6;
    cout << res[n - 1] << "\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 14:00:00
Judged At
2024-07-12 14:00:00
Judged By
Score
100
Total Time
1ms
Peak Memory
556.0 KiB