일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 실기
- Zynq
- 정처기
- vitis
- C++
- Beakjoon
- baekjoon
- Vivado
- axi
- HDLBits
- UNIX
- 백준
- Backjoon
- amba
- AMBA BUS
- Bus
- SQL
- linux
- 코딩테스트
- hdl
- Xilinx
- chip2chip
- verilog HDL
- 자격증
- 정보처리기사
- 리눅스
- boj
- java
- FPGA
- Today
- Total
목록전체 글 (123)
Hueestory
1. Explain the types of music you enjoy listening to.Discuss some of your favorite bands, composers or musicians. (즐겨 듣는 음악 종류에 대해 설명하세요. 좋아하는 밴드, 작곡가 혹은 음악가를 말해보세요.) 1. 요새 JPOP을 듣는다.2. 가장 좋아하는 가수는 'Mrs. Green Apple', Mrs가 들어가지만 남자다.3. 구직 중에 '나라는 것'을 듣고 감동 받았고, 그 가수를 좋아하게 되었다. A. Thesedays, I usually listen JPOP.I love JPOP's lyrics and melody.Um, my favorite singer is 'Mrs. Green Apple'The sing..
1. Do you have a favorite park? Describe this park by telling me what it looks like.(가장 좋아하는 공원이 있나요? 어떻게 생겼는지 제게 묘사해 보세요.) 1. 요새 공원에 잘 가지 않지만, 어렸을 때 서울에 큰 공원에 갔었다.2. 운동을 하기 위한 공간이 있었다.3. 봄엔 꽃이 피고 가을엔 낙엽이 떨어져서, 커플이나 가족들이 많이 왔다. A. Um, actually I don't go to the park thesedays.But when I was young, I lived in Seoul, there was a huge park nearby my home.There was a place to ride a bikes or skatebo..
안녕하세요, 저는 희명이라고 합니다.영어를 마지막으로 공부한건 10년정도 된 것 같아요.오픽을 보러 온 이유는 당연히 취직하는데에 사용하기 위해서에요.대부분의 회사에서 영어 성적을 요구하거든요.여름이라 오는 길이 너무 더웠어요. 저는 더위를 잘 타거든요.혼자 말하는게 쉬울거라는 생각은 안하지만 최선을 다해볼게요.암튼, 좋은 성적을 받았으면 좋겠네요. Hi, I'm hueemyung.I didn't study English at all since I was 20.The reason I'm here to take the exam is, of course, to use it for getting a job.Most companies that I want to apply require English score...
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..