VirtualDever
close
프로필 배경
프로필 로고

VirtualDever

  • Root (748) N
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (124)
      • DirectX (2)
      • Unity (87)
      • Unreal (16)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (31)
    • DevLog (111)
    • LifeLog (307) N
      • book (126)
      • Review (4)
      • Workout (27) N
      • Finance (20)
    • SideProjects (35)
      • N Job (33)
      • Youtuber (2)
  • 홈
  • 태그
  • 방명록

C# 백준 2338번: 긴자리 계산

using System; using System.Numerics; class Program { static void Main(string[] args) { string stringA = Console.ReadLine(); string stringB = Console.ReadLine(); BigInteger A = BigInteger.Parse(stringA); BigInteger B = BigInteger.Parse(stringB); Console.WriteLine(A + B); Console.WriteLine(A - B); Console.WriteLine(A * B); } } 문제 출처 https://www.acmicpc.net/problem/2338 2338번: 긴자리 계산 첫째 줄에 A+B, 둘째 ..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 19.
  • textsms

C# 백준 1271번: 엄청난 부자2

using System; using System.Numerics; class Program { static void Main(string[] args) { string stringInput = Console.ReadLine(); string[] arrayStrings = stringInput.Split(' ', StringSplitOptions.None); BigInteger N = BigInteger.Parse(arrayStrings[0]); BigInteger M = BigInteger.Parse(arrayStrings[1]); BigInteger divided = N / M; BigInteger remained = N % M; Console.WriteLine(divided); Console.Writ..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 19.
  • textsms

C# 백준 10757번: 큰 수 A + B

using System; using System.Numerics; class Program { static void Main(string[] args) { string stringInput = Console.ReadLine(); string[] arrayStrings = stringInput.Split(' ', StringSplitOptions.None); BigInteger A = BigInteger.Parse(arrayStrings[0]); BigInteger B = BigInteger.Parse(arrayStrings[1]); Console.WriteLine(A + B); } } 문제 출처 https://www.acmicpc.net/problem/10757 10757번: 큰 수 A+B 두 정수 A와..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 19.
  • textsms

백준 2420번: 사파리월드

using System; class Program { static void Main(string[] args) { string stringInput = Console.ReadLine(); string[] array = stringInput.Split(' ', StringSplitOptions.None); long a = System.Convert.ToInt64(array[0]); long b = System.Convert.ToInt64(array[1]); long result = 0; if (a < b) { result = b - a; } else { result = a - b; } result = Math.Abs(result); Console.WriteLine(result); } } 문제 출처 http..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 11382번: 꼬마 정민

using System; class Program { static void Main(string[] args) { string stringInput = Console.ReadLine(); string[] arrayInput = stringInput.Split(' ', StringSplitOptions.None); long[] intResult = new long[3] {0, 0, 0}; for (int i = 0; i < 3; i++) { intResult[i] = System.Convert.ToInt64(arrayInput[i]); } long total = 0; for (int i = 0; i < 3; i++) { total += intResult[i]; } Console.WriteLine(total..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 9086번: 문자열

using System; class Program { static void Main(string[] args) { string stringNumber = Console.ReadLine(); int intNumber = System.Convert.ToInt32(stringNumber); string[] result = new string[intNumber]; for (int i = 0; i < intNumber; i++) { string testCase = Console.ReadLine(); char[] array = testCase.ToCharArray(); result[i] = array[0].ToString() + array[array.Length - 1].ToString(); } foreach (s..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • navigate_next
공지사항
  • 개인 포트폴리오 [Division Like] 소개
  • 디스코드 [개발일지 공유하기] 서버에 초대 드립니다.
  • 게임 외주 개발 합니다.
  • Vritual Dever의 주인장은 누구입니까
전체 카테고리
  • Root (748) N
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (124)
      • DirectX (2)
      • Unity (87)
      • Unreal (16)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (31)
    • DevLog (111)
    • LifeLog (307) N
      • book (126)
      • Review (4)
      • Workout (27) N
      • Finance (20)
    • SideProjects (35)
      • N Job (33)
      • Youtuber (2)
최근 글
인기 글
최근 댓글
태그
  • #ㅂㅗ
  • #ㅗ
  • #1
  • #부
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바