Range Partition

아직 제출이 없습니다시간 제한5초메모리 제한1024 MB

문제

Alan and Barbara suddenly felt like playing with numbers. Alan chooses a non-empty subset from the set of first NN positive integers (1,2,,N1,2,\dots ,N). Barbara takes the rest of the numbers (if any) from the set. And then they both calculate the sum of the elements in their respective sets.

Alan believes in a magic ratio, which is X:YX:Y. Hence, Alan wants to choose the subset in such a way that the ratio between the sum of Alan's subset and the sum of Barbara's subset is exactly X:YX:Y.

Can you help Alan to choose a subset that can achieve the desired ratio?

입력

The first line of the input gives the number of test cases, TT. TT test cases follow.

Each test case has a single line containing three integers, NN, XX and YY, as described above.

출력

For each test case, output the first line containing Case #x: y, where xx is the test case number (starting from 1) and yy is POSSIBLE, if Alan can choose such a non-empty subset, and IMPOSSIBLE otherwise.

If you print POSSIBLE, then output two more lines for that test case.

In the second line, print a single integer, which denotes the size of Alan's subset.

In the third line, print the integers present in Alan's subset.

If there are multiple solutions, you can print any of them.

제한

  • 1T1001≤T≤100.
  • 1X1081≤X≤10^8.
  • 1Y1081≤Y≤10^8.
  • gcd(X,Y)=1\gcd(X,Y)=1, where gcd is Greatest common divisor.