F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

LCM Walk

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 4714    Accepted Submission(s): 2523


Problem Description
A frog has just learned some number theory, and can't wait to show his ability to his girlfriend.

Now the frog is sitting on a grid map of infinite rows and columns. Rows are numbered $1, 2, \cdots$ from the bottom, so are the columns. At first the frog is sitting at grid $(s_x, s_y)$, and begins his journey.

To show his girlfriend his talents in math, he uses a special way of jump. If currently the frog is at the grid $(x, y)$, first of all, he will find the minimum $z$ that can be divided by both $x$ and $y$, and jump exactly $z$ steps to the up, or to the right. So the next possible grid will be $(x + z, y)$, or $(x, y + z)$.

After a finite number of steps (perhaps zero), he finally finishes at grid $(e_x, e_y)$. However, he is too tired and he forgets the position of his starting grid!

It will be too stupid to check each grid one by one, so please tell the frog the number of possible starting grids that can reach $(e_x, e_y)$!
 

Input
First line contains an integer $T$, which indicates the number of test cases.

Every test case contains two integers $e_x$ and $e_y$, which is the destination grid.

$\cdot$ $1 \leq T \leq 1000$.
$\cdot$ $1 \leq e_x, e_y \leq 10^9$.
 

Output
For every test case, you should output "Case #x: y", where $x$ indicates the case number and counts from $1$ and $y$ is the number of possible starting grids.
 

Sample Input
3 6 10 6 8 2 8
 

Sample Output
Case #1: 1 Case #2: 2 Case #3: 3
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-19 02:14:18, Gzip enabled