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
- 백준
- IFileDialog
- Programmers
- RVO
- DirectX11
- directx
- winapi
- 언리얼엔진5
- Unreal Engine5
- 2294
- 1563
- softeer
- 티스토리챌린지
- Frustum
- NRVO
- baekjoon
- C++
- 팰린드롬 만들기
- RootMotion
- 오블완
- DeferredRendering
- 프로그래머스
- C
- GeeksForGeeks
- UnrealEngine5
- UnrealEngine4
- const
- 줄 세우기
- UE5
- algorithm
Archives
- Today
- Total
목록멀쩡한 사각형 (1)
Game Develop
[Algorithm] Programmers :: 멀쩡한 사각형
https://programmers.co.kr/learn/courses/30/lessons/62048 코딩테스트 연습 - 멀쩡한 사각형 가로 길이가 Wcm, 세로 길이가 Hcm인 직사각형 종이가 있습니다. 종이에는 가로, 세로 방향과 평행하게 격자 형태로 선이 그어져 있으며, 모든 격자칸은 1cm x 1cm 크기입니다. 이 종이를 격자 선을 programmers.co.kr 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 #include using namespace std; int gcd(long long a,long long b) { long long maxNum = max(a,b); long lo..
Algorithm/Programmers
2022. 5. 18. 09:09