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
- Unreal Engine5
- 티스토리챌린지
- NRVO
- UE5
- algorithm
- Frustum
- DeferredRendering
- 오블완
- RVO
- 팰린드롬 만들기
- 1563
- UnrealEngine5
- const
- DirectX11
- GeeksForGeeks
- 언리얼엔진5
- C
- directx
- 프로그래머스
- RootMotion
- 줄 세우기
- C++
- Programmers
- IFileDialog
- winapi
- 백준
- softeer
- baekjoon
- 2294
- UnrealEngine4
Archives
- Today
- Total
목록문자열 복사 (1)
Game Develop
[Algorithm] Baekjoon 2195번 : 문자열 복사
https://www.acmicpc.net/problem/2195 2195번: 문자열 복사 첫째 줄에 S, 둘째 줄에 P가 주어진다. S와 P는 영어 대소문자와 숫자로만 되어 있다. S의 길이는 1,000을 넘지 않으며, P의 길이는 1,000을 넘지 않는다. copy함수만을 이용하여 S에서 P를 만들어낼 수 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); string s, p; cin >> s >> p; int sSize = s.size(); int ..
Algorithm/Baekjoon
2023. 3. 7. 01:12