CF17D.Notepad

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Nick is attracted by everything unconventional. He doesn't like decimal number system any more, and he decided to study other number systems. A number system with base bb caught his attention. Before he starts studying it, he wants to write in his notepad all the numbers of length nn without leading zeros in this number system. Each page in Nick's notepad has enough space for cc numbers exactly. Nick writes every suitable number only once, starting with the first clean page and leaving no clean spaces. Nick never writes number 00 as he has unpleasant memories about zero divide.

Would you help Nick find out how many numbers will be written on the last page.

输入格式

The only input line contains three space-separated integers bb , nn and cc ( 2<=b<101062<=b<10^{106} , 1<=n<101061<=n<10^{106} , 1<=c<=1091<=c<=10^{9} ). You may consider that Nick has infinite patience, endless amount of paper and representations of digits as characters. The numbers doesn't contain leading zeros.

输出格式

In the only line output the amount of numbers written on the same page as the last number.

输入输出样例

  • 输入#1

    2 3 3
    

    输出#1

    1
  • 输入#2

    2 3 4
    

    输出#2

    4

说明/提示

In both samples there are exactly 44 numbers of length 33 in binary number system. In the first sample Nick writes 33 numbers on the first page and 11 on the second page. In the second sample all the 44 numbers can be written on the first page.

首页