Fzu 1650 1752 a^b MoD

Source: Internet
Author: User
Tags mul

problem 1752 a^b mod Caccept:837 submit:3615
Time limit:1000 mSec Memory limit:32768 KB problem Description

Given A,b,c, you should quickly calculate the result of A^b mod C. (1<=a,b,c<2^63).

Input

There is multiply testcases. Each testcase, there are one line contains three integers A, B and C, separated by A single space.

Output

For each testcase, output an integer, denotes the result of A^b mod C.

Sample INPUT3 2 Output124 sourcefzu Summer Training iv--number theory

Exercises

Large data processing, the second square with multiplication, multiplication with addition, to ensure that not explode.

#include <stdio.h> #define LL unsigned __int64ll mul (ll a,ll b,ll c) {ll tmp=a%c,tre=0;while (b) {if (b&1) if (tre+ =TMP) >=c)   tre-=c;         if ((tmp<<=1) >=c)            tmp-=c;        B>>=1;} return tre;} LL MoD (ll a,ll b,ll c) {ll y=1;a=a%c;while (b) {if (b&1)    Y=mul (y,a,c);        A=mul (A,A,C);        




Copyright NOTICE: This article for Bo Master original article, casually reproduced.

Fzu 1650 1752 a^b MoD

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.