제출 #15922

#제출 시각아이디문제언어결과실행 시간메모리
15922ggoh새로운 달력 (GCJ12KOR_calendar)C++98
25 / 25
0 ms1084 KiB
#include<algorithm>
#include<cstdio>
long long a,i,x,y,z,t,m,u,p,o[121];
main()
{
	scanf("%lld",&a);
	for(p=0;p<a;p++)
	{
		m=0;
		u=0;
		scanf("%lld%lld%lld",&x,&y,&z);
		for(i=1;i<=z;i++)
		{
			t=y+u;
			m+=(t+z-1)/z;
			u=t%z;
			o[i]=m;
		}
		printf("Case #%lld: %lld\n",p+1,x/z*o[z]+o[x%z]);
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...