728x90
728x90
-소인수분해 후, 5의 개수 구하기
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project2
{
class Class1
{
static void Main(string[] args)
{
StreamWriter writer = new StreamWriter(Console.OpenStandardOutput());
StreamReader reader = new StreamReader(Console.OpenStandardInput());
StringBuilder sb = new StringBuilder();
//[1]입력
int num = int.Parse(reader.ReadLine());
int count = 0;
while (num >= 5)
{
count += num / 5;
num /= 5;
}
writer.WriteLine(count);
writer.Close();
reader.Close();
}
}
}
728x90
'c# > 백준알고리즘' 카테고리의 다른 글
[백준 15649번 c#] N과 M (0) | 2022.10.05 |
---|---|
[백준 2004번 c#] 조합 0의 개수 (0) | 2022.10.05 |
[9375번 c#]패션왕 신해빈 (0) | 2022.10.05 |
[1934번 c#] 최소공배수 (0) | 2022.10.03 |
[백준 c#] 24060번 알고리즘 수업 - 병합 정렬 1 (1) | 2022.09.13 |