일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 유니티 합치기
- networkbehaviourid
- unity git
- Github DeskTop Merge
- m585 수리
- networkobject
- 유니티 머지
- M590
- 깃허브 데스크탑 병합
- m585
- networkobject.networkid
- NavMesh
- 유니티 브랜치 merge
- githubdesktopmerge
- 유니티
- stateauthority
- 몬스터
- 유니티 해상도 변경
- nav오브젝트사이거리
- 오브젝트 깜빡임
- navigation
- unity merge
- m590 수리
- unity 병합
- 유니티 해상도
- 깃허브 데스크탑 합치기
- Unity
- 유니티 해상도 설정
- nav거리
- Today
- Total
목록기타 (64)
집게사장의 꿈
문제0~ 9까지의 숫자의 각 사용 횟수를 출력 해결Linq로 숫자를 그룹화 한 다음 세아림 internal class E2577 // 숫자의 개수{ static void Main(string[] args) { int multiple =1; for (int i = 0; i x).ToDictionary(x =>x.Key ,x=> x.Count()); var allDigits = Enumerable.Range(0, 10).Select(d => d.ToString()[0]); var result = allDigits .Select(d => new { Digit = d, Count = count.ContainsKey(d) ? co..
https://www.acmicpc.net/problem/10250 문제 W : 호H : 층이 주어 질 때, 만약 H = 3, W = 5일때,3번째 손님은 301호에 방을 배정 받는다.4번째 손님은 102호에 배정 받는다. 세로를 기준으로 먼저 배정을 받을 때,H,W, Index 일 때의 방 호수 해결 층을 기준으로 올림값과, 나눔값으로 XXYY에 해당하는 호수를 찾는다. internal class E10250 // ACM 호텔{ static void Main(string[] args) { int TestData = int.Parse(Console.ReadLine()); for (int i = 0; i int.Parse(x)).ToArray(); ..
문제3자리 각 숫자에 대해 첫번째는 A+B -C 의 값두번째는 문자열 A+B를 합친 값에 -C 를 한 것 코드internal class E31403 // A+B-C{ static void Main(string[] args) { string[] chars = new string[3]; for (int i = 0; i int.Parse(x)).Sum() - int.Parse(chars[2]) * 2); Console.WriteLine(int.Parse(chars[0] + chars[1]) - int.Parse(chars[2])); }}
문제문자열 중 x번째 단어 출력 해결문자열을 배열 처럼 사용 코드internal class E27866 // 문자와 문자열{ static void Main(string[] args) { Console.Write(Console.ReadLine()[int.Parse(Console.ReadLine())-1]); }}
문제5자개의 숫자를 각각 제곱해 10으로 나눈 나머지값을 구하는 것 해결모든 수를 Linq로 제곱해서 더하고 나눈다. 코드internal class E2475 // 검증수 브5{ static void Main(string[] args) { int num = (int)(Console.ReadLine().Split().Select(x => Math.Pow(int.Parse(x),2)).Sum())%10; Console.WriteLine(num); }}
문제어떤 자연수 N이 있을 때, 그 자연수 N의 분해합은 N과 N을 이루는 각 자리수의 합을 의미한다. 어떤 자연수 M의 분해합이 N인 경우, M을 N의 생성자라 한다. 예를 들어, 245의 분해합은 256(=245+2+4+5)이 된다. 따라서 245는 256의 생성자가 된다. 물론, 어떤 자연수의 경우에는 생성자가 없을 수도 있다. 반대로, 생성자가 여러 개인 자연수도 있을 수 있다.자연수 N이 주어졌을 때, N의 가장 작은 생성자를 구해내는 프로그램을 작성하시오. * 숫자 X의 생성자를 구하는 것 해결브루트 포스는 모든 경우를 거쳐가는 것 1부터 입력된 숫자 N까지를 판단해 주어진 숫자 X를 생성해 내는 생성자[수]를 구하면 됨. 코드internal class E2231 // 브루트포스 - 분해..
Vp 문제에서 '[' 가 추가된 버전([)]은 고려하지 않고 바로 다음 짝 지음만을 판단 using System;using System.Collections.Generic;using System.Text;namespace ConsoleApp1{ internal class Program { static void Main(string[] args) { string str = Console.ReadLine(); Stack sta = new Stack(); bool flag = false; while (str[0] != '.') { foreach (in..
괄호의 짝을 판단하는 문제using System;using System.Collections.Generic;using System.Text;namespace ConsoleApp1{ internal class Program { static void Main(string[] args) { int iter = int.Parse(Console.ReadLine().Trim()); Stack stack = new Stack(); StringBuilder stringBuilder = new StringBuilder(); for (int i = 0; i 0) isValid = false; ..
스택 문제using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApp1{ internal class Program { static void Main(string[] args) { int iter = int.Parse(Console.ReadLine()); Stack stack = new Stack(); int sum =0; for(int i = 0; i 0) { sum -= stack.Pop();..
구현하라길래 스택을 만들었는데 시간 초과using System;using System.Linq;namespace ConsoleApp1{ internal class Program { static void Main(string[] args) { int iter = int.Parse(Console.ReadLine()); Stack stack = new Stack(iter); for (int i = 0; i int.Parse(x)).ToArray(); switch (numbers[0]) { case 1://스택에 넣기 ..