일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GeorgiaTech
- 토플 라이팅
- 암호화폐
- 클라우드
- probability
- 프로그래밍
- can
- backtrader
- 아마존 웹 서비스
- Cloud
- TOEFL
- 자동차sw
- 파이썬
- 백트레이더
- AWS
- 비트코인
- 확률
- python
- 개발자
- 오토사
- 블록체인
- 토플
- 자동매매
- toefl writing
- 백테스트
- it
- 퀀트
- Bitcoin
- AUTOSAR
- backtest
- Today
- Total
목록프로그램 (4)
Leo's Garage
Easy A school is trying to take an annual photo of all the students. The students are asked to stand in a single file line in non-decreasing order by height. Let this ordering be represented by the integer array expected where expected[i] is the expected height of the ith student in line. You are given an integer array heights representing the current order that the students are standing in. Eac..
[Bronze V] 개 - 10172 https://www.acmicpc.net/problem/10172
[Bronze V] 고양이 - 10171 https://www.acmicpc.net/problem/10171 10171번: 고양이 아래 예제와 같이 고양이를 출력하시오. www.acmicpc.net 성능 요약 메모리: 2020 KB, 시간: 0 ms 분류 구현(implementation) 문제 설명 아래 예제와 같이 고양이를 출력하시오. 입력 없음. 출력 고양이를 출력한다. #include int main() { std::cout
[Bronze IV] A/B - 1008 https://www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 성능 요약 메모리: 1984 KB, 시간: 0 ms 분류 사칙연산(arithmetic), 구현(implementation), 수학(math) 문제 설명 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. 입력 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) 출력 첫째 줄에 A/B를 출력한다. 실제 정답과 출력값의 절대오차 또는 상대오차가 10-9 이하이면 정답이다. #include using namespace std; int main(in..