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
- 풀이
- hackctf
- lob
- c++
- SWEA
- 숙명여자대학교 정보보안 동아리
- 자료구조 복습
- C언어
- 머신러닝
- BOJ Python
- HTML
- Javascript
- Sookmyung Information Security Study
- 웹페이지 만들기
- 생활코딩
- 기계학습
- siss
- hackerrank
- Python
- CSS
- BOJ
- c
- PHP 웹페이지 만들기
- The Loard of BOF
- 백준
- 드림핵
- XSS Game
- 파이썬
- WarGame
- 숙명여자대학교 정보보안동아리
Archives
- Today
- Total
혜랑's STORY
[BOJ_C++] 11170번 : 0의 개수 본문
code
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <cstring>
#include <stack>
#include <vector>
#include <cmath>
#include <string>
using namespace std;
int sum(int list[], int start, int end) {
int sum = 1;
for (int i = start; i <= end; i++)
sum *= list[i];
return sum;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T; cin >> T;
int n, m, cnt;
string temp;
for (int tc = 0; tc < T; tc++) {
cin >> n >> m;
cnt = 0;
for (int i = n; i <= m; i++) {
temp = to_string(i);
for (int i = 0; i < temp.size(); i++) {
if (temp[i] == '0') ++cnt;
}
}
printf("%d\n", cnt);
}
return 0;
}
- n과 m 사이에 있는 수 중 0의 개수를 모두 구하는 문제이다.
- for문을 통해 n부터 m까지 숫자를 string으로 변환하여 '0'이 존재하면 cnt를 1 증가시켜 준다.
- 이때 0이 아닌 '0'으로 비교하는 이유는 '0'이 0을 char로 표현한 것이기 때문이다.
- 각 테스트 케이스의 cnt를 출력하고 프로그램을 종료한다.
결과
'무지성 공부방 > 알고리즘 해결' 카테고리의 다른 글
[BOJ_C++] 11068번 : 회문인 수 (0) | 2021.08.09 |
---|---|
[BOJ_C++] 1343번 : 폴리오미노 (0) | 2021.08.08 |
[BOJ_C++] 17127번 : 벚꽃이 정보섬에 피어난 이유 (0) | 2021.08.08 |
[BOJ_C++] 18512번 : 점프 점프 (0) | 2021.08.08 |
[BOJ_C++] 2078번 : 무한이진트리 (0) | 2021.08.06 |