일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- level3
- Modern C++
- Silver
- 8-Puzzle
- Unity
- Euclidean
- solid 원칙
- 프로그래머스
- Flyweight Pattern
- LEVEL2
- two pointer
- stack
- 3D RPG
- Gold
- level1
- dirtyflag pattern
- 프로세스 상태
- programmers
- BFS
- Zenject
- trie
- effective C++
- knapsack Problem
- BOJ
- Project
- binary search
- PrefixSum
- SWEA
- Bronze
- algorithm
Archives
- Today
- Total
Patrick's Devlog
[BOJ/C++] 0의 개수(11170번) 본문
1. 개요
https://www.acmicpc.net/problem/11170
1-1. 설명
N부터 M까지 수 중 0을 세는 프로그램을 작성한다.
1-2. 제한 사항
- 첫줄에 테스트 케이스 수가 주어지며 1 이상 20 이하 자연수
- N과 M은 0 이상 1,000,000이하 정수, N은 M보다 작거나 같음
2. 구현
2-1. 풀이
반복문으로 N과 M사이 숫자들을 나머지 연산을 통해 0의 개수를 세아렸다.
2-2. 구현
#include <iostream>
#include <algorithm>
using namespace std;
int queens[15];
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int tc, n, m, result;
cin >> tc;
for (int t = 0; t < tc; t++) {
result = 0;
cin >> n >> m;
for (int i = n; i <= m; i++) {
int num = i;
if (num == 0) {
result += 1;
continue;
}
while (10 <= num) {
if (num % 10 == 0) result += 1;
num /= 10;
}
}
cout << result << "\n";
}
return 0;
}
'Algorithm > Algorithms Practice' 카테고리의 다른 글
[프로그래머스/C++] 멀리뛰기 (0) | 2022.10.07 |
---|---|
[프로그래머스/C++] 성격 유형 검사하기 (1) | 2022.10.06 |
[BOJ/C++] 등수 구하기(1205번) (0) | 2022.10.04 |
[BOJ/C++] 생일(5635번) (0) | 2022.10.03 |
[BOJ/C++] 계단 오르기(2579번) (0) | 2022.10.02 |