Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 컴퓨터 그래픽스
- 라인트레이서
- 시스템프로그래밍
- 자료구조
- directx
- stl
- set
- Stack
- Visual Micro
- 아두이노 소스
- html
- 아두이노 컴파일러
- priority_queue
- LineTracer
- Array
- vector
- c++
- 수광 소자
- Algorithm
- list
- Deque
- map
- queue
- 아두이노
- WinAPI
- arduino compiler
- 통계학
- Arduino
- C언어
- 운영체제
Archives
- Today
- Total
Kim's Programming
1940. 가랏! RC카! 본문
1940. 가랏! RC카!
풀이 방법
<코드>
#include<iostream> #include<cstring> using namespace std; int main(int argc, char** argv) { int test_case; int T; cin >> T; for (test_case = 1; test_case <= T; ++test_case) { int command{ 0 }; std::cin >> command; int commandType{ 0 }; int value{ 0 }; int currentVecocity{ 0 }; int distance{ 0 }; for (int i = 0; i < command; i++) { std::cin >> commandType; if (commandType != 0) std::cin >> value; switch (commandType) { case 0: break; case 1: currentVecocity += value; break; case 2: if (currentVecocity - value < 0) currentVecocity = 0; else currentVecocity -= value; break; } distance += currentVecocity; } std::cout << "#" << test_case << " " << distance << "\n"; } return 0;//정상종료시 반드시 0을 리턴해야합니다. }
'SW ExpertAcademy > D2' 카테고리의 다른 글
1946. 간단한 압축 풀기 (0) | 2018.12.01 |
---|---|
1945. 간단한 소인수분해 (0) | 2018.12.01 |
1928. Base64 Decoder (0) | 2018.12.01 |
1288. 새로운 불면증 치료법 (0) | 2018.12.01 |
1285. 아름이의 돌 던지기 (0) | 2018.11.30 |