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
- 머신러닝
- lob
- hackctf
- 자료구조 복습
- CSS
- WarGame
- 웹페이지 만들기
- 숙명여자대학교 정보보안 동아리
- Python
- Javascript
- BOJ
- 백준
- XSS Game
- SWEA
- C언어
- 파이썬
- hackerrank
- c++
- BOJ Python
- 기계학습
- 풀이
- The Loard of BOF
- 드림핵
- 생활코딩
- HTML
- siss
- Sookmyung Information Security Study
- 숙명여자대학교 정보보안동아리
- PHP 웹페이지 만들기
- c
Archives
- Today
- Total
목록2078번 (1)
혜랑's STORY
[BOJ_C++] 2078번 : 무한이진트리
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b; cin >> a >> b; int x, y; x = y = 0; while (true) { if (a == 1) { y += b - 1; break; } else if (b == 1) { x += a - 1; break; } if (a > b) x += a / b, a %= b; else y += b / a, b %= a; } printf("%d %d"..
무지성 공부방/알고리즘 해결
2021. 8. 6. 18:28