14815 : Fresh Chocolate (Small)

풀이

룰루랄라

코드

#include <cstdio>
#include <algorithm>
using namespace std;

int main() {
	int tc, t, n, p, c[5];
	scanf("%d", &tc);
	for (t = 1; t <= tc; t++) {
		c[0] = c[1] = c[2] = c[3] = 0;
		
		scanf("%d %d", &n, &p);
		for (int i = 0, a; i < n; i++) scanf("%d", &a), c[a % p]++;
		
		int r = c[0];
		if (p == 2) {
			r += (c[1] + 1) / 2;
		}
		else if (p == 3) {
			if (c[1] > c[2]) swap(c[1], c[2]);
			r += c[1] + (c[2] - c[1] + 2) / 3;
		}

		printf("Case #%d: %d\n", t, r);
	}

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-03-30 17:05

Read more posts by this author