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
- 백준
- englishbook
- MySQL
- 쉬운 알고리즘 문제
- 코테 대비
- BFS
- 알고리즘
- 코테
- 프로그래머스
- swexpertacademy
- the midnight library
- PyQt
- sw expert academy
- 원서
- dfs
- 삼성
- 원서읽자
- English
- D4
- 원서읽기
- 직무면접
- nightroutine
- 완전탐색
- sw expert
- 알고리즘 문제
- 코딩테스트
- readingbook
- STUDYENGLISH
- 코테 준비
- SQL
Archives
- Today
- Total
목록블랙잭 (1)
시나브로
[백준] 2798 번 블랙잭
전체 경우의 수를 탐색하였다. 3개의 카드를 뽑기 때문에 for문 3개를 이용하였다. #include #include #include #include using namespace std; int list[300010] = { 0 }; int main(void) { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int n, m; scanf("%d %d", &n, &m); for (int i = 0; i < n; i++) { scanf("%d", &list[i]); } int max = 0; int box = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (i != j..
알고리즘/백준
2019. 12. 31. 17:01