기본적으로 using에 추가해 두면 좋은 라이브러리using System;using System.IO; // StreamReader/Writer → 빠른 입출력using System.Text; // StringBuilder, Encodingusing System.Collections; // 기본 컬렉션using System.Collections.Generic; // List, Dictionary, HashSet, Queue, Stackusing System.Linq; // LINQ 쿼리 (정렬/검색/집계)System.Numerics → BigInteger (큰 수 계산 필요 시)System.Diagnostics → Stopwatch (시간 측정용)코..