250x250
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
- 코테
- D4
- sw expert academy
- SQL
- 원서읽자
- 완전탐색
- 코테 대비
- 알고리즘 문제
- readingbook
- 쉬운 알고리즘 문제
- 삼성
- sw expert
- dfs
- 원서읽기
- 백준
- 원서
- 코테 준비
- swexpertacademy
- MySQL
- STUDYENGLISH
- English
- PyQt
- the midnight library
- 알고리즘
- BFS
- 직무면접
- 코딩테스트
- englishbook
- nightroutine
- 프로그래머스
Archives
- Today
- Total
목록규칙성 (1)
시나브로
[ 프로그래머스 ] 멀쩡한 사각형
규칙성을 찾는다고 찾았는데 잘못찾았다. 검색으로 찾은 규칙성은 최대 공약수로 나눈 크기의 사각형에서는 가로+세로-1의 사각형들이 잘린다는 것이다. 그래서 최대공약수를 찾고 계산하면 된다. using namespace std; long long solution(int w, int h) { long long answer = 1; int fix = w; int f_w = w; int f_h = h; if (w 0; i--) { if (w % i == 0 && h % i == 0) { w =w/i; h =h/i; break; } } long long number = 0; number = (f_h/h)*(h+w-1); answer = (lo..
알고리즘/프로그래머스
2020. 4. 4. 16:09