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

VirtualDever

  • Root (739) 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 (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130) N
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
  • 홈
  • 태그
  • 방명록

C# 백준 5522번: 카드 게임

using System; class Program { static void Main(string[] args) { int total = 0; for (int i = 0; i < 5; i++) { string stringN = Console.ReadLine(); int intN = Convert.ToInt32(stringN); total += intN; } Console.WriteLine(total); } } 문제 출처 https://www.acmicpc.net/problem/5522 5522번: 카드 게임 JOI군은 카드 게임을 하고 있다. 이 카드 게임은 5회의 게임으로 진행되며, 그 총점으로 승부를 하는 게임이다. JOI군의 각 게임의 득점을 나타내는 정수가 주어졌을 때, JOI군의 총점을 구하는 프..

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

C# 백준 25372번: 성택이의 은밀한 비밀번호

using System; using System.Numerics; class Program { static void Main(string[] args) { string stringNumber = Console.ReadLine(); int number = int.Parse(stringNumber); for (int i = 0; i < number; i++) { string stringPassword = Console.ReadLine(); if (5 < stringPassword.Length && stringPassword.Length < 10) { Console.WriteLine("yes"); } else { Console.WriteLine("no"); } } } } 문제 출처 https://www.acm..

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

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
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • navigate_next
공지사항
  • 게임 외주 개발과 게임 개발 과외 합니다.
  • Vritual Dever의 주인장은 누구입니까
전체 카테고리
  • Root (739) 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 (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130) N
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
최근 글
인기 글
최근 댓글
태그
  • #ㅗ
  • #부
  • #1
  • #ㅂㅗ
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바