|
||||||||||
CalculationTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6024 Accepted Submission(s): 1477 Problem Description Assume that f(0) = 1 and 0^0=1. f(n) = (n%10)^f(n/10) for all n bigger than zero. Please calculate f(n)%m. (2 ¡Ü n , m ¡Ü 10^9, x^y means the y th power of x). Input The first line contains a single positive integer T. which is the number of test cases. T lines follows.Each case consists of one line containing two positive integers n and m. Output One integer indicating the value of f(n)%m. Sample Input
Sample Output
Source | ||||||||||
|