Submit | All submissions | Best solutions | Back to list |
LASTDIG - The last digit |
Nestor was doing the work of his math class about three days but he is tired of make operations a lot and he should deliver his task tomorrow. His math’s teacher gives him two numbers a and b. The problem consist of finding the last digit of the potency of base a and index b. Help Nestor with his problem. You are given two integer numbers: the base a (0 ≤ a ≤ 20) and the index b (0 ≤ b ≤ 2,147,483,000), a and b both are not 0. You have to find the last digit of ab.
Input
The first line of input contains an integer t, the number of test cases (t ≤ 30). t test cases follow. For each test case will appear a and b separated by space.
Output
For each test case output an integer per line representing the result.
Example
Input: 2 3 10 6 2 Output: 9 6
Added by: | Jose Daniel Rodriguez Morales |
Date: | 2008-12-01 |
Time limit: | 1s |
Source limit: | 700B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: GOSU |
Resource: | Own |
hide comments
|
||||||||||||||
2014-12-06 12:19:16 Harsh Shah
Make sure your code prints 1 when 0^0. |
||||||||||||||
2014-11-12 06:51:26 V. Zhang
We Fortran coders should be aware that the judgement in this problem is picky about leading spaces. Huhuhu... |
||||||||||||||
2014-11-10 00:07:51 gamer496
i hate when operator precedence screws me over and i forget brackets got two wa because of that --ans(Francky)--> Please read the notes below ; your 'comments' seem not to belong here. They could be deleted soon. Please use comments only for the intended purpose. Last edit: 2014-11-10 00:20:09 |
||||||||||||||
2014-11-07 21:14:58 sugreev prasad
getting wrong output but running in all test cases in ideone http://ideone.com/CQ2S0i |
||||||||||||||
2014-11-06 13:42:48 beginner_spoj
can someone please check whats wrong with my code... its giving me TLE <snip> Last edit: 2023-06-12 22:44:21 |
||||||||||||||
2014-11-02 04:55:35 Mrigank Dembla
what if both a and b are 0?? |
||||||||||||||
2014-11-01 01:45:22 Tasya Aditya Rukmana
why can't I change the language to python?.. it's always submitted as ADA |
||||||||||||||
2014-10-15 08:38:05 Diksha Jaiswal
weak test cases...my code gave output 0 for 1 100 0 bt still accepted...:p |
||||||||||||||
2014-10-09 19:11:06 Lehar
My code which gives 9 as the answer for 150^53 gets accepted and the one which gives the correct ans 0 doesn't. Very strange. |
||||||||||||||
2014-09-30 21:56:56 मयंक
"a and b both are not 0" => "Wrong Statememnt". Cost me a few WA. |