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
- NRVO
- DeferredRendering
- Unreal Engine5
- UnrealEngine4
- GeeksForGeeks
- Programmers
- C
- IFileDialog
- RVO
- 오블완
- winapi
- softeer
- 2294
- algorithm
- Frustum
- 팰린드롬 만들기
- 1563
- 줄 세우기
- 프로그래머스
- baekjoon
- 언리얼엔진5
- 백준
- UE5
- UnrealEngine5
- DirectX11
- RootMotion
- const
- C++
- 티스토리챌린지
- directx
Archives
- Today
- Total
목록IOIOI (1)
Game Develop
[Algorithm] Baekjoon 5525번 : IOIOI
https://www.acmicpc.net/problem/5525 5525번: IOIOI N+1개의 I와 N개의 O로 이루어져 있으면, I와 O이 교대로 나오는 문자열을 PN이라고 한다. P1 IOI P2 IOIOI P3 IOIOIOI PN IOIOI...OI (O가 N개) I와 O로만 이루어진 문자열 S와 정수 N이 주어졌을 때, S안에 PN이 몇 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 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n = 0; int m = 0; string in..
Algorithm/Baekjoon
2022. 11. 26. 21:33