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
- C언어
- siss
- CSS
- 숙명여자대학교 정보보안동아리
- HTML
- hackerrank
- 웹페이지 만들기
- BOJ Python
- c++
- WarGame
- 기계학습
- SWEA
- hackctf
- lob
- 풀이
- Sookmyung Information Security Study
- 머신러닝
- 자료구조 복습
- PHP 웹페이지 만들기
- c
- 생활코딩
- BOJ
- 백준
- 파이썬
- The Loard of BOF
- 드림핵
- XSS Game
- Python
- 숙명여자대학교 정보보안 동아리
- Javascript
Archives
- Today
- Total
목록13777번 (1)
혜랑's STORY
[BOJ_C++] 13777번 : Hunt The Rabbit
# 문제 1부터 50까지의 봉투 중 토끼가 들어있는 봉투를 알려준다. 봉투를 열어볼 땐 이분법을 사용한다. 따라서 맨 처음 열어보는 봉투는 항상 25가 된다. 이 때 열어보는 봉투를 모두 출력하라. # 풀이 #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 low, high, mid; int key; cin >> key; while (key != 0) { low = 1, high = 50; while (low
무지성 공부방/알고리즘 해결
2021. 7. 26. 19:36