일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Xilinx
- 실기
- Zynq
- HDLBits
- 정보처리기사
- baekjoon
- 백준
- Bus
- AMBA BUS
- 자격증
- amba
- FPGA
- Beakjoon
- 코딩테스트
- linux
- Backjoon
- hdl
- java
- Vivado
- C++
- axi
- SQL
- UNIX
- 정처기
- 리눅스
- chip2chip
- vitis
- verilog HDL
- verilog
- boj
- Today
- Total
목록전체 글 (128)
Hueestory
RP111. In person (개인적으로)2. Over the phone (전화상으로)3. Answering machine (자동응답기) - 모든 질문에 대한 답변은 YES로 가정- 답변은 리액션→상대방의 반응→감정으로 마무리- 마지막 질문은 까먹었다가 생각난 것 처럼 연출 Hi. I want to buy a new phone like, um, an iPhone 16 // 당신의 상황을 설명You know but, um... I don't have much money so I want to ask... how much is the iPhone 16? // 질문 1Oh, that cheap?! Only $1,000? That's great! // 답변 1 보여주기But, uh, I really..
일 경험X / 학생X / 수강 후 5년 / 가족과 함께 거주 / 영화, 공연, 콘서트, 공원 / 음악 감상 / 조깅, 걷기 / 집에서 보내는 휴가 선택 : 여가, 음악감상, 공원, 거주지돌발 : 재활용, 모임, 식당 1 - Introduction [1, 2, 3 Combo]2 - 현재시제로 장소나 종류 묘사3 - 현재시제로 활동, 루틴, 단계 묘사4 - 최초 혹은 최근 경험 설명 [1, 3, 4 Combo]5 - 현재시제로 장소나 종류 묘사6 - 최초 혹은 최근 경험 설명 (간단하게)7 - 인상적인 경험 설명 [1, 3, 4 Combo]8 - 현재시제로 장소나 종류 묘사9 - 최초 혹은 최근 경험 설명 (간단하게)10 - 인상적인 경험 설명 [RP]11 - 주어진 상황에 맞게 상대방에게 목적을 말하고 정..
#include #include #include using namespace std;vector solution(vector record) { vector answer; map m1; vector> tmp; for (auto x : record){ int a = x.find(" "); int b = x.find(" ", a + 1); string ioc = x.substr(0, a); string uid = x.substr(a + 1, b - a - 1); if (ioc == "Enter"){ string name = x.substr(b + 1); m1[uid..
#include #include #include #include using namespace std;vector solution(vector fees, vector records) { vector answer; map tmp, cnt; for (auto s : records){ int time = stoi(s.substr(0, 2)) * 60 + stoi(s.substr(3, 2)); int car_num = stoi(s.substr(6, 4)); if (s.substr(11) == "IN") tmp[car_num] = time; else{ cnt[car_num] += time - tmp[car_num]; ..
#include #include #include #include using namespace std;string solution(string new_id) { // 1단계 transform (new_id.begin(), new_id.end(), new_id.begin(), ::tolower); // 2단계 string tmp = ""; for (auto x : new_id){ if (isalpha(x) || isdigit(x) || x == '-' || x == '_' || x == '.') tmp += x; } new_id = tmp; tmp = ""; // 3단계 for (auto x : new..
bool isPrime(long long num){ if (num 다양한 응용이 가능하니 꼭 외워놓기
#include #include #include #include #include using namespace std;bool isPrime(long long num){ if (num 0){ s += to_string(n % k); n /= k; } reverse(s.begin(), s.end()); string tmp = ""; for(char x : s){ if(x == '0'){ if(!tmp.empty() && isPrime(stoll(tmp))) answer++; tmp = ""; } else tmp += x; } i..
1. You indicated in the survey that you prefer to stay at home during your vacation.Why do you like to stay at home? Please describe what activities you like to do during your vacations at home.(당신은 설문조사에서 휴가 때 집에 머무르는 것을 선호한다고 선택했습니다.왜 집에서 지내는 것을 좋아하나요? 집에서 휴가를 보내는 동안 어떤 활동을 하는지 설명해주세요.)2. Most people want to travel during their vacations.Can you tell me why you prefer to stay at home during yo..