A hard puzzletime limit: 2000/1000 MS (Java/others) memory limit: 65536/32768 K (Java/Others)
Total submission (s): 29415 accepted submission (s): 10581
Problem descriptionlcy gives a hard puzzle to feng5166, LWG, jgshining And Ignatius: gave a and B, how to know the ^ B. everybody objects to this bt problem, so lcy makes the problem easier than begin.
This puzzle describes that: gave a and B, how to know the ^ B's the last digit number. but everybody is too lazy to slove this problem, so they remit to you who is wise.
Inputthere are mutiple test cases. Each test cases consists of two numbers a and B (0 <a, B <= 2 ^ 30)
Outputfor each test case, you should output the ^ B's last digit number.
Sample Input
7 668 800
Sample output
96
#include <stdio.h>#include <string.h>const char *sam[] = {"0", "1", "2486", "3971", "46", "5", "6", "7931", "8426", "91"};int main(){ int a, b; while(scanf("%d%d", &a, &b) == 2) printf("%c\n", sam[a % 10][(b-1) % strlen(sam[a%10])]); return 0;}
Hdu1097 a hard puzzle