3052

알고리즘 문제풀이/[C++] Baekjoon

Baekjoon 문제 3052번 나머지

문제 출처:https://www.acmicpc.net/problem/3052 3052번: 나머지 각 수를 42로 나눈 나머지는 39, 40, 41, 0, 1, 2, 40, 41, 0, 1이다. 서로 다른 값은 6개가 있다. www.acmicpc.net 코드는 다음과 같습니다: #include using namespace std ; int main(){ ios::sync_with_stdio(false) ; cin.tie(NULL) ; cout.tie(NULL) ; int remainder[42] = {0, }, temp, cnt = 0 ; for(int i = 0 ; i > temp ; temp %= 42 ; remainder[temp] += 1 ; } for(int i =..

gurcks8989
'3052' 태그의 글 목록