Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Given three positive integers ~a~, ~n~, and ~m~, calculate ~a^n~ ~\\mod~ ~m~.
Input:
- A single line containing three integers ~a~, ~n~, and ~m~ within the range ~[1, 10^{18}]~.
Output:
- A single integer which is the value of ~a^n~ ~mod~ ~m~.
Sample Input
2 3 10
Sample Output
8
Bình luận