728x90
https://softeer.ai/practice/7628
소스코드
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int n, v;
cin >> n;
vector<int> list;
for (int i = 0; i < n; i++)
{
cin >> v ;
list.push_back(v);
}
sort(list.begin(), list.end());
int result = 0 ;
int count = 0;
for (int i = 2; i <= 100; i++)
{
count = 0;
for (int j = 0; j < n; j++)
{
if (list[j] % i == 0)
count++;
}
if (result < count)
result = count;
}
cout << result;
return 0;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/C++]Lv.2 게임 맵 최단거리(BFS) (0) | 2024.07.18 |
---|---|
[프로그래머스/C++]Lv3 네트워크 BFS (0) | 2024.07.17 |
[Softeer/C++]Level1 나무심 (0) | 2024.03.08 |
[Softeer/C++]Level1 연탄 배달의 시작 (0) | 2024.03.07 |
[프로그래머스] Lv3 조건에 맞는 사용자와 총 거래금액 조회하기 (0) | 2024.01.03 |