일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- verilog
- linux
- vitis
- boj
- AMBA BUS
- java
- baekjoon
- chip2chip
- Vivado
- 백준
- axi
- HDLBits
- hdl
- 실기
- FPGA
- UNIX
- Beakjoon
- C++
- verilog HDL
- amba
- 자격증
- Zynq
- Xilinx
- 정처기
- 정보처리기사
- SQL
- 코딩테스트
- Backjoon
- 리눅스
- Bus
- Today
- Total
목록전체 글 (128)
Hueestory
#include #include #include using namespace std;static vector A;static vector result;void merge(int s, int e);void partition(int s, int e);int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; A.resize(n); result.resize(n); for (int i = 0; i > A[i]; partition(0, n - 1); for (int i = 0; i A[j]) result[k++] = A[j++]; e..
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int h, m; cin >> h >> m; if (m
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; if ((n % 4 == 0 && n % 100 != 0) || n % 400 == 0) cout
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int i = 1; i "\n" 대신 endl 사용 시 시간 초과로 실패=> endl는 단순 개행 뿐 아니라 버퍼를 비우는 작업까지 하기 때문
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int i = 1; i
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, r; cin >> n; string str; for (int i = 0; i > r >> str; for (int j = 0; j 1. n번의 반복 테스트 케이스를 받음2. r번의 반복 횟수를 받고 str에 문자열 받음
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b, c; cin >> a >> b >> c; int A[10] = {}; string sum = to_string(a * b * c); for (int i = 0; i 1. 3개의 자연수를 받고 모두 곱한 값을 string 형식으로 sum에 저장2. ascii code를 사용해 for문으로 sum을 탐색하며 각 숫자의 배열값을 증가 후 출력
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); vector> num(9); int max = 0; int index = 0; for (int i = 0; i > num[i].first; for (int i = 0; i max) { max = num[i].first; index = i; } cout 1. pair vector 생성 후 vector의 first부분에 9개의 자연수를 받음2. max의 초기값을 0으로 설정 후 자연수와 비교해 max값을 찾아내고, 해당 max값의 index를 찾아냄3. max값과 index + 1값 출력