#include <iostream>
using namespace std;
int solution1()
{
int array[10] = {0, };
int remainder[42] = {0,};
int count = 0;
for (int i=0; i<10; i++)
{
cin >> array[i];
if (array[i] < 0 or array[i] > 1000)
return 0;
if (!remainder[array[i] % 42]++)
count = count + 1;
}
return count;
}
int main(void)
{
int count = 0;
count = solution1();
cout << count << endl;
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 4153번 직각삼각형 (파이썬) (0) | 2022.06.14 |
---|---|
[백준] 3053번 택시 기하학 (파이썬) (0) | 2022.06.14 |
[백준] 3009번 네 번째 점 (파이썬) (0) | 2022.06.14 |
[백준] 2941번 크로아티아 알파벳 (파이썬) (0) | 2022.06.14 |
[백준] 2908번 상수 (C++) (0) | 2022.06.14 |