Programming contests

Magas szintű programozási nyelvek 1, egyéni verseny, 2016. április 10.

April 10, 2016 10:00 AM – April 10, 2016 3:00 PM

Big Mod

Calculate R = BP mod M for large values of B, P, and M, using an efficient algorithm. (That's right, this problem has a strict time limit!)

Input Specification

The input contains several test cases. Each test case consists of three integer values, in the order B, P, M, one number per line. B and P are integers in the range 0 to 2 147 483 647, inclusive. M is an integer in the range 1 to 46 340, inclusive. Consecutive test cases are separated by a blank line. The input is terminated by end-of-file (EOF).

Output Specification

For each test case, print one line containing a single integer, the result of the computation.

Sample Input

  1. 3
  2. 18132
  3. 17
  4. 17
  5. 1765
  6. 3
  7. 2374859
  8. 3029382
  9. 36123
download as text file

Output for Sample Input

  1. 13
  2. 2
  3. 13195
download as text file
University of Debrecen; Faculty of Informatics; v. 03/01/2019