Examples : Input : VOLVO Output : 3 Explanation : (VO)L(VO) Input : merchant Output : 1 Explanation : No chunks possible. Input : ghiabcdefhelloadamhelloabcdefghi Output : 7 Explanation : (ghi)(abcdef)(hello)(adam)(hello)(abcdef)(ghi) ------------------최악의 경우(abcde) 1 개는 보장된다.최선의 경우abcba >> n개가 보장azcba >> 3개(a)(zcb)(a)일단 팰린드롬인 애는 그대로 포장할 수 있다. 포장해도 되는 애를 안해서 얻는 이득이 있나?팰린드롬인 단어를 포장하지 않는 경우 갯수가 무조..