| //https://www.acmicpc.net/problem/5565 #include <iostream> |
| using namespace std; |
| int main() |
| { |
| int total, now; |
| cin >> total; |
| for(int i=0; i<9; i++) |
| { |
| cin >> now; |
| total-=now; |
| } |
| cout << total; |
| } |
'알고리즘 문제 풀이 > 1DP_과제(~180615)' 카테고리의 다른 글
| 171224_10886_0 = not cute / 1 = cute (0) | 2017.12.24 |
|---|---|
| 171224_10798_세로읽기 (0) | 2017.12.24 |
| 171224_5543_상근날드 (0) | 2017.12.24 |
| 171224_10797_10부제 (0) | 2017.12.24 |
| 171224_1357_뒤집힌 덧셈 (0) | 2017.12.24 |