반응형
using System;
using System.Collections.Generic;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string n_string = Console.ReadLine();
string[] token = n_string.Split();
int n = int.Parse(token[0]);
int k = int.Parse(token[1]);
int a = n;
List<int> pig = new List<int>();
while (a > 0)
{
if (n % a == 0)
{
pig.Add(a);
}
a--;
}
pig.Sort();
if (pig.Count < k) Console.WriteLine(0);
else Console.WriteLine(pig[k-1]);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 9012 (0) | 2023.09.19 |
---|---|
백준 C# - 9098 (0) | 2023.09.17 |
백준 C# - 5086 (0) | 2023.07.15 |
백준 C# - 2869 +) 풀이 (0) | 2023.07.08 |
백준 C# - 1193 +) 풀이 (0) | 2023.07.08 |
댓글