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
- 머신러닝
- Python
- BOJ Python
- c++
- XSS Game
- 파이썬
- 드림핵
- C언어
- BOJ
- CSS
- PHP 웹페이지 만들기
- 풀이
- hackerrank
- SWEA
- siss
- Sookmyung Information Security Study
- The Loard of BOF
- c
- 생활코딩
- 웹페이지 만들기
- 백준
- 자료구조 복습
- 숙명여자대학교 정보보안동아리
- WarGame
- lob
- 기계학습
- hackctf
- Javascript
- 숙명여자대학교 정보보안 동아리
- HTML
Archives
- Today
- Total
목록숫자야구 (1)
혜랑's STORY
[BOJ_C++] 2503번 : 숫자 야구
code #define _CRT_SECURE_NO_WARNINGS #include #include #include using namespace std; bool visited[1001]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, num, strike, ball, cnt = 0, s_cnt, b_cnt; string temp, num_str; memset(visited, true, sizeof(visited)); for (int i = 123; i < 1000; i++) { temp = to_string(i); if (temp[0] == temp[1] || temp[1] == temp[2] || ..
무지성 공부방/알고리즘 해결
2021. 8. 17. 23:19