https://www.acmicpc.net/problem/16472코드#include #include using namespace std;#define FASTIO ios::sync_with_stdio(false); cin.tie(NULL);int n, ans = 0;string s;unordered_map m;int main() { FASTIO; cin >> n >> s; int left=0, right = 0; while (right n) { m[s[left]]--; if (m[s[left]] == 0) m.erase(s[left]); left++; } ans = max(ans, right - left + 1); right++; } cout 설명인식할 수 있는 알파벳의 수와 문자..