Codeforces Round #390 (Div. 2), problem: (C) Vladik and Chat Solution in C/C++
Codeforces Round #390 (Div. 2), problem: (C) Vladik and Chat Solution in C/C++ #include <stdio.h> #include <string.h> int main() { int t; scanf("%d", &t); while(t--) { int n, m; scanf("%d", &n); char Name; for(int i …