Submit | All submissions | Best solutions | Back to list |
KIDZEE1P - Progression |
Given three numbers, find out if they from arithmetic progression, geometric progression, both, or none.
তিনটি সংখ্যা দেওয়া থাকবে, তোমাকে বলতে হবে তারা কি সমান্তর ধারা, গুণোত্তর ধারা, উভয়টি হতে পারে, নাকি কোনটিই নয়।
Input
First line contains the number of test cases T (T ≤ 50). Then T lines follow, each containing three integers n1, n2, n3 where 1 ≤ n1, n2, n3 ≤ 1000.
প্রথম লাইনের টেস্ট কেসের সংখ্যা দেওয়া T (T ≤ 50)দেওয়া থাকবে, এর পরে T টি লাইন থাকবে। প্রত্যেক লাইনে তিনটি করে সংখ্যা n1, n2, n3দেওয়া থাকবে যেখানে 1 ≤ n1, n2, n3 ≤ 1000.
Output
For each test case, print a line of the following format: “Case X:
প্রতিটি টেস্ট কেসের জন্য তোমাকে এক লাইন করে প্রিন্ট করতে হবে, ফরম্যাট হবেঃ “Case X:
Example
Input: 4 1 2 5 1 3 5 2 4 8 2 2 2 Output: Case 1: None Case 2: Arithmetic Progression Case 3: Geometric Progression Case 4: Both
Added by: | Shafaet |
Date: | 2013-01-09 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Own problem - Used for Junior Training |
hide comments
2015-03-28 09:44:58 dsr
This is kinda similar to the "what is next" problem in tutorial... |