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 |
Tags
- 백트래킹
- 브루트포스
- 알고리즘
- VR
- 다익스트라
- Unreal Engine 5
- Team Fortress 2
- 수학
- 정렬
- 투 포인터
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- 유니온 파인드
- 재귀
- 누적 합
- 구현
- 스택
- c++
- 그리디 알고리즘
- 백준
- 트리
- ue5
- 그래프
- 문자열
- 우선순위 큐
- 시뮬레이션
- DFS
- 유니티
- 자료구조
- BFS
Archives
- Today
- Total
1일1알
백준 3474번 교수가 된 현우 C++ 본문
https://www.acmicpc.net/problem/3474
5가 몇개 있는지
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
int cnt = 0;
for (int i = 5; i <= n; i *= 5) {
cnt += n / i;
}
cout << cnt << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 25195번 Yes or yes C++ (0) | 2022.10.28 |
---|---|
백준 16469번 소년 점프 C++ (0) | 2022.10.27 |
백준 14426번 접두사 찾기 C++ (0) | 2022.10.25 |
백준 15724번 주지수 C++ (0) | 2022.10.24 |
백준 17129번 윌리암슨수액빨이딱따구리가 정보섬에 올라온 이유 C++ (0) | 2022.10.23 |