반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 처우협의
- 경력
- incr
- 13908
- 소프티어
- 처우산정
- 백준
- 기술면접
- upper_bound
- BFS
- 매개변수탐색
- boj #19237 #어른 상어
- OFFSET
- 오퍼레터
- 물채우기
- 성적평가
- 이분탐색
- 파라메트릭
- msSQL
- compose
- BOJ
- 연결요소
- 6987
- 퇴사통보
- Docker
- Kafka
- softeer
- @P0
- dfs
- 백트래킹
Archives
- Today
- Total
기술 블로그
2588번 곱셈 본문
728x90
반응형
https://www.acmicpc.net/problem/2588
쉬운 문제이다.
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 32 33 34 35 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int first = 0, second = 0; void simulation() { int hundred = second / 100; int ten = (second % 100) / 10; int one = second % 10; printf("%d\n", first * one); printf("%d\n", first * ten); printf("%d\n", first * hundred); printf("%d\n", first * second); } int main(void) { scanf("%d %d", &first, &second); simulation(); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
5427번 불 (0) | 2018.11.16 |
---|---|
1600번 말이 되고픈 원숭이 (0) | 2018.11.15 |
1325번 효율적인 해킹 (0) | 2018.11.04 |
14910번 오르막 (0) | 2018.11.03 |
2573번 빙산 (0) | 2018.10.31 |