E-ekka Dokka LightOJ-1116

Source: Internet
Author: User

Ekka and his friend Dokka decided to buy a cake. They both love cakes and that's why they want to share the cake after buying it. As the name suggested that Ekka is very fond of odd numbers and Dokka are very fond of even numbers, they want to divide th e cake such that Ekka gets a share of N square centimeters and Dokka gets a share of M Square centimeter s where N is odd and M are even. Both N and M are positive integers.

They want to divide the cake such that N * M = W, where W was the dashing factor set by them. Now you know their dashing factor and you have to find whether they can buy the desired cake or not. Input

Input starts with an integer T (≤10000), denoting the number of test cases.

Each case is contains an integer W (2≤w < 263). and W 'll is not a power of 2. Output

For each case, print the case number first. After that print "impossible" if they can ' t buy their desired cake. If They can buy such a cake, you has to print N and M. If There is multiple solutions, then print the result where M is as small as possible. Sample Input

3

10

5

Sample Output

Case 1:5 2

Case 2:impossible

Case 3:3 4 Test instructions: Enter a number to find a singular factor and an even factor, requiring even-numbered factors to be as small as possible;

Ideas: direct detection of even factors well, also, the technology must be impossible;

The following code is attached:

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
int main ()
{
	int t,k=0;
	ll N;
	cin>>t;
	while (t--)
	{
		ll j=2,flag=0;
		cin>>n;
		if (n%2!=0) flag=0;
		else
		{
			while (1)
			{
				if (n%j==0)
				{
					if ((n/j) &1)
					{
						flag=1;
						break;
					}
				}
				else if (j>n) break;	
				j+=2;
			}
		}
		if (flag) printf ("Case%d:%lld%lld\n", ++k,n/j,j);
		else printf ("Case%d:impossible\n", ++k);
	}
	return 0;





Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.