문제: https://www.acmicpc.net/problem/1032 오랜만에 손에 잡은 문제이자, 문제가 너무 쉬워 어딘가에 함정이 있을거라 한참을 찾아본 문제네요 ㅋㅋ; 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950#include #include #include #include #include #include using namespace std;const int MAX_N = 50; int main(){ string characters[MAX_N][MAX_N]; int n; int strLength = 0; cin >> n; for (int i = 0; i > str; strLen..