일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lob
- BOJ Python
- XSS Game
- 숙명여자대학교 정보보안동아리
- Sookmyung Information Security Study
- hackerrank
- HTML
- Python
- 숙명여자대학교 정보보안 동아리
- 백준
- 머신러닝
- WarGame
- PHP 웹페이지 만들기
- SWEA
- 파이썬
- hackctf
- 웹페이지 만들기
- CSS
- 풀이
- c++
- The Loard of BOF
- siss
- c
- BOJ
- C언어
- 드림핵
- 자료구조 복습
- Javascript
- 기계학습
- 생활코딩
- Today
- Total
목록무지성 공부방/알고리즘 해결 (80)
혜랑's STORY
# 문제 # 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include using namespace std; int search(int* x, int size) { int max = -999, i = 0, j = 0; while (j < size) { j = i + 1; while (x[j] == 0) j++; if (max < j - i) max = j - i; i = j; } if (i != j) { if (max < j - i) max = j - i; } return max; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);..
# 문제 # 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, max = 0, temp; cin >> n; int p[3] = { 0 }, sq[3] = { 0 }; for (int i = 0; i > temp; sq[j] += temp * temp; p[j] += temp; } } bool flag = true; for (int i = 1; ..
1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t, n, temp; cin >> t; int result[100001]; for (int tc = 0; tc > n; temp = n; memset(result, 0, sizeof(result)); for (int i = 2; i
참고한 블로그 : https://hooongs.tistory.com/334 1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); bool result = false; long n; int l, x; cin >> n >> l; for (int i = l; i < 101; i++) { x = n - (i * (i + 1) / 2); //사실상 이 곳의 x는 LX라고 생각하여도 무방함. if (x % i == 0) { x = x / i; if (x..
1. 문제 2. 풀이 #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); bool isPrime[1001]; memset(isPrime, true, sizeof(isPrime)); // 에라토스테네스의 체 이용하여 1000까지의 소수 구하기 isPrime[0] = false; isPrime[1] = false; for (int i = 2; i num; while(num--){ cin >> input; if(isPrime[input]) result++; } cout
1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a[10], b[10], a_win = 0, b_win = 0; for (int i = 0; i b[i]) ++a_win; else if (a[i] < b[i]) ++..
1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); string x, y; cin >> x >> y; reverse(x.begin(), x.end()); reverse(y.begin(), y.end()); int sum = stoi(x) + stoi(y); string reverse_sum = to_string(sum); reverse(reverse_sum.begin(), reverse_sum.end()); cout
1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include int main() { int n; scanf("%d",&n); int flag = 0; char name[100]; for (int i = 0; i < n; i++) { scanf("%s", name); if (strcmp(name, "anj") == 0) { flag = 1; break; } } if (flag) printf("뭐야;"); else printf("뭐야?"); return 0; } 멤버 수를 입력받고 for문을 돌며 멤버 이름을 입력 받는다. 입력받은 멤버의 이름 중 "anj"가 있으면 flag를 1로 바꾸고 for문을 탈출한다. flag가 1이면 "뭐야;"를 출력하고, 아니면..