일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL
- FPGA
- 백준
- C++
- amba
- chip2chip
- axi
- Vivado
- 정보처리기사
- Bus
- vitis
- 코딩테스트
- HDLBits
- Zynq
- baekjoon
- hdl
- Beakjoon
- 정처기
- 리눅스
- Backjoon
- java
- boj
- AMBA BUS
- Xilinx
- linux
- verilog HDL
- 자격증
- verilog
- UNIX
- 실기
- Today
- Total
목록Beakjoon (15)
Hueestory
#include #include #include using namespace std;const int MAX = 2000000;bool isPrime[MAX];bool is_Palindrome(int x);int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); long N; cin >> N; fill(begin(isPrime), end(isPrime), true); isPrime[0] = isPrime[1] = false; for (int i = 2; i * i 1. 어떤 수 N의 범위가 1 => N보다 큰 소수의 범위를 MAX(2,000,000)으로 잡는다2. 먼저 MAX 이내의 소수..
#include #include using namespace std;typedef long long ll;const int MAX = 10000001;bool isPrime[MAX];int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); ll N, M; cin >> N >> M; vector Prime; for (int i = 2; i = N) ans++; } } cout 1. 수의 범위가 1 2. 어떤 수가 소수의 N제곱(N>=2)이므로, 10^7까지의 소수를 모두 판별하여 저장한다=> long long 타입을 사용3. 소수 벡터 Prime를 사용, tmp * y
#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 #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으로 나눈 나머지를 출력