HDU 1061 rightmost Digit

Source: Internet
Author: User
Tags pow
Modulo exponentiation, and for bits, always ask for 10 modulo # include <stdio.h># include <algorithm># include <math.h>using namespace std;__ Int64 Pow (__int64 m,__int64 N) {    __int64 p=1;    while (n)    {        if (n%2)            p=p*m%10;        n/=2;        m=m*m%10;    }    return p%10;} int main () {    int t;    __int64 n,m;    while (~SCANF ("%d", &t))    {while        (t--)        {            scanf ("%i64d", &n);            M=n;            m%=10;//to find the N-times modulo            if (m==0)                printf ("0\n");            else                printf ("%i64d\n", Pow (M,n));        }    }    return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.