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
- 백준
- 드림핵
- SWEA
- Sookmyung Information Security Study
- 머신러닝
- PHP 웹페이지 만들기
- c
- 파이썬
- 숙명여자대학교 정보보안 동아리
- WarGame
- hackerrank
- c++
- Python
- 자료구조 복습
- BOJ
- 웹페이지 만들기
- Javascript
- C언어
- lob
- hackctf
- XSS Game
- 숙명여자대학교 정보보안동아리
- 풀이
- BOJ Python
- 기계학습
- HTML
- 생활코딩
- siss
- CSS
- The Loard of BOF
Archives
- Today
- Total
목록1780번 (1)
혜랑's STORY
[BOJ_C++] 1780번 : 종이의 개수
code #define _CRT_SECURE_NO_WARNINGS #include using namespace std; int cnt[3]; int arr[2187][2187]; void paper(int size, int x, int y) { bool check = true; for (int i = x; i < x + size; i++) { for (int j = y; j < y + size; j++) { if (arr[i][j] != arr[x][y]) { check = false; break; } } } if (check) { cnt[arr[x][y] + 1]++; return; } for (int i = x; i < x + size; i += size / 3) { for (int j = y; j ..
무지성 공부방/알고리즘 해결
2021. 8. 22. 17:05