int main(){ int t, n, s1, s2;char a, b;scanf("%d", &t);while (t--) { scanf("%d%*c", &n);s1 = s2 = 0;while (n--) { scanf("%c %c%*c", &a, &b);if ((a == 'R' && b == 'S') || (a == 'S' && b == 'P') || (a == 'P' && b...