일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 HDL
- 리눅스
- baekjoon
- Vivado
- 정보처리기사
- 백준
- Zynq
- Bus
- Beakjoon
- 자격증
- AMBA BUS
- amba
- 코딩테스트
- UNIX
- boj
- 실기
- SQL
- verilog
- Backjoon
- HDLBits
- C++
- hdl
- linux
- Xilinx
- chip2chip
- axi
- java
- vitis
- 정처기
- FPGA
- Today
- Total
목록PS(중단) (64)
Hueestory
#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값 출력
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cout 1. 여러 방법이 있지만, iostream의 출력 방식 cout을 사용
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int A[5]; for (int i = 0; i > A[i]; int num = 0; for (int i = 0; i 1. 5개의 숫자를 받는다2. 모든 수를 제곱하여 더한 값을 10으로 나눈 나머지를 출력