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 | 31 |
Tags
- algorithm
- 프로그래머스
- 티스토리챌린지
- winapi
- 오블완
- baekjoon
- 팰린드롬 만들기
- RootMotion
- Programmers
- Frustum
- 2294
- UnrealEngine5
- Unreal Engine5
- IFileDialog
- 1563
- DeferredRendering
- 줄 세우기
- RVO
- DirectX11
- 언리얼엔진5
- softeer
- const
- C
- GeeksForGeeks
- UnrealEngine4
- C++
- directx
- UE5
- NRVO
- 백준
Archives
- Today
- Total
목록잃어버린 괄호 (1)
Game Develop
[Algorithm] Baekjoon 1541번 : 잃어버린 괄호
https://www.acmicpc.net/problem/1541 1541번: 잃어버린 괄호 첫째 줄에 식이 주어진다. 식은 ‘0’~‘9’, ‘+’, 그리고 ‘-’만으로 이루어져 있고, 가장 처음과 마지막 문자는 숫자이다. 그리고 연속해서 두 개 이상의 연산자가 나타나지 않고, 5자리보다 www.acmicpc.net 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); string s; cin >> s; b..
Algorithm/Baekjoon
2022. 10. 27. 00:56