일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- oracle
- IT
- 오라클 아키텍처
- 장범준
- 6학년 8반 1분단
- 인덱스
- 악보
- 니가 참 좋아
- 아이유
- nginx
- SQL 처리
- 오라클
- 개발자
- Inside Of Me
- DBMS 구성요소
- 데이터베이스
- index
- 신입
- db
- 핑거스타일
- 레이디스코드
- I'm fine thank you
- 러블리즈
- 기타
- DBMS
- 스위트라떼
- 봄 사랑 벚꽃 말고
- 천공의 시간
- 말 더듬
- 슬픔의 후에
목록공대인/Nojam (9)
취미로 음악을 하는 개발자
#include using namespace std; int main() { int N, M, L; cin >> N >> M >> L; int pos[N+1] = {0, }; // 각 자리들, 알아 보기 쉽게 0은 제외 pos[1] = 1; // 1번 자리에 앉은 친구가 처음 공을 받는다 int count = 0; // 전달된 공 횟수 int index = 1; // 시작은 1번 자리부터 while(pos[index] != M) { // M번 받은 자리가 있는가 if (pos[index] % 2 != 0) { // 홀수 index += L; if(index > N) // N만큼 이동했는데 숫자가 초과될 시 index -= N; } else { // 짝수 index -= L; if(index
#include #include #include using namespace std; int main(){ int count; cin >> count; int result = 0; for (int c = 0; c > temp; if (max < temp) max = temp; it = find(arr.begin(), arr.end(), temp); if (it != arr.end()) same = temp; else arr.push_back(temp); } if (arr.si..
#include #include #include using namespace std; int main() { list arr; list::iterator it; int temp; int max = 0; int same = 0; for (int i = 0; i > temp; if (max < temp) max = temp; it = find(arr.begin(), arr.end(), temp); if (it != arr.end()) same = temp; else arr.push_back(temp); } if (arr.size() == 3) { cout
#include using namespace std;void sort(int *num, int size);int isPrime(int n);int main() { int a; cin >> a; int elem[50]; int index = 0; int count = 2; while (a != 1) { if (isPrime(a) == 1) { elem[index++] = a; break; } else if (a % count == 0 && isPrime(count) == 1) { a /= count; elem[index++] = count; count = 2; } else count++; } sort(elem, index); for (int i = 0; i < index; i++) cout
#include using namespace std; int main() { int n; cin >> n; int input[2*n]; for (int i = 0; i > input[i] >> input[i+1]; } for (int i = 0; i b) { max = a; min = b; } else if (a == b) { cout
#include #include #include using namespace std;int travelCnt(int* arr, int col){ // 비용 계산 return arr[col];} int fib(int cnt) { if (cnt > 0) return cnt * fib(cnt-1); else return 1;} int main() { int N; cin >> N; int W[N][N]; vector v(N); int arrSize = fib(N); int arr[arrSize][N+1]; bool isZero = false; // 경로에 0이 있는가 for (int i = 0; i < N; i++) v[i] = i; int index = 0; int cost[arrSize]; do{ // 모든..