E.Clone
개발하는 96년생 Null_Reference_Exception
Privacy PolicyThis privacy policy applies to the Shaper app (hereby referred to as "Application") for mobile devices that was created by EClone (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".Information Collection and UseThe Application collects information when you download and use it. This information may include information such asYour d..
기본적으로 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 (시간 측정용)코..
https://www.acmicpc.net/problem/11050요약이항계수 : n개 중 k개를 선택하는 경우의 수(조합)n콤비네이션k(n * (n-1) * ... * (n-(k-1))) / (k * (k-1) * ... * 1)풀이전략int result = 1; 로 시작하여분자 각 항을 모두 곱하고분모 각 항을 모두 나누어 결과 도출결과틀린 이유메인 함수 명을 Main이 아닌 main으로 작성반복문 변화값에 --를 넣어야 했는데 ++로 작성코드using System;class Program{ static void Main(string[] args) { // 입력 string[] input = Console.ReadLine().Split(); // 한 줄 입력? ..
개인정보처리방침 (예시) — Larainfo시행일: 2025.09.02버전: 202606291. 개요Larainfo(이하 “서비스”)는 사용자가 직접 발급받은 NEXON OpenAPI 키(이하 “API 키”)를 입력하여 브라우저(사용자 단말)에서 NEXON과 직접 통신해 얻은 정보를 가공·표시하는 클라이언트 도구를 제공합니다. 서비스 운영자는 사용자의 API 키를 서버로 전송하거나 저장하지 않습니다(아래 “수집·보관 방식” 참조). 본 방침은 Larainfo가 사용자 데이터를 어떻게 처리하는지 설명합니다.2. 개인정보의 정의본 방침에서 ‘개인정보’라 함은 서비스 이용 과정에서 제공되는 개인 식별 가능한 정보를 의미하며, 본 서비스 관점에서는 주로 다음을 의미합니다:사용자가 입력하는 정보: API 키 (예..