Palindromic Ciphers
Practice
4 (34 votes)
Ad Hoc
Approved
Easy
Open
Problem
90% Success 10495 Attempts 20 Points 3s Time Limit 256MB Memory 1024 KB Max Code

Julius Cipher is a type of cipher which relates all the lowercase alphabets to their numerical position in the alphabet, i.e., value of a is 1, value of b is 2, value of z is 26 and similarly for the rest of them.

Little Chandan is obsessed with this Cipher and he keeps converting every single string he gets, to the final value one gets after the multiplication of the Julius Cipher values of a string. Arjit is fed up of Chandan's silly activities, so he decides to at least restrict Chandan's bad habits.

So, he asks Chandan not to touch any string which is a palindrome, otherwise he is allowed to find the product of the Julius Cipher values of the string.

Input:
The first line contains t number of test cases. The first line of every test case contains a string, S.

Output:
Print the value if the string is not a palindrome, otherwise print Palindrome - where value is equal to the product of all the characters of Julius Cipher values.

Constraints: 1 <= T <= 102
1<=length of the string<=10

Note:
The string will contain only lowercase letters.

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:20
50 votes
Tags:
Easy
Points:20
22 votes
Tags:
Ad-HocApprovedEasyImplementationMathOpen
Points:20
13 votes
Tags:
Basic ProgrammingBasics of ImplementationEasyImplementation