Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TCP/IP
- BFS
- 호스트 주소
- List 정렬
- 서브넷 마스크
- Tostring 사용법
- list
- c#
- List 찾기
- 알고리즘
- C# Contains
- AddRange
- OSI 3계층
- InsertRange
- Visual Studio
- List 제거
- 서브넷
- 네트워크 용어
- C++
- C# Find
- 네트워크
- Parse 사용법
- 기본 게이트웨이
- 호스트
- 백준
- list 사용법
- DP
- c# list
- List 추가
- IP주소
Archives
- Today
- Total
CodeLabs
[백준 / C#] 1541 : 잃어버린 괄호 본문
using System;
class Program
{
static string[] str;
static int result = 0;
static void Input()
{
str = Console.ReadLine().Split('-');
}
static void Solution()
{
Division();
for(int i=1; i<str.Length; i++)
{
if (str[i].Contains("+"))
{
string[] copy = str[i].Split('+');
for (int j=0; j<copy.Length; j++)
{
result -= int.Parse(copy[j]);
}
}
else
{
result -= int.Parse(str[i]);
}
}
Console.WriteLine(result);
}
static void Division()
{
if (str[0].Contains("+"))
{
string[] div = str[0].Split('+');
for (int i = 0; i < div.Length; i++)
result += int.Parse(div[i]);
}
else
result = int.Parse(str[0]);
}
static void Solve()
{
Input();
Solution();
}
static void Main(string[] args)
{
Solve();
}
}
'백준 > 1000 ~' 카테고리의 다른 글
[백준 / C#] 1697 : 숨바꼭질 (0) | 2023.07.18 |
---|---|
[백준 / C++] 1620 : 나는야 포켓몬 마스터 이다솜 (0) | 2023.07.15 |
[백준 / C#] 1463 : 1로 만들기 (0) | 2023.07.11 |
[백준 / C#] 1260 : DFS와 BFS (0) | 2023.07.09 |
[백준 / C#] 1012 : 유기농 배추 (0) | 2023.07.06 |