首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
hdoj1061专题
Rightmost Digit【HDOJ1061】
题目链接 #include <iostream>#include <cstdio>using namespace std;int mod_exp(int a, int b, int c) //快速幂取余a^b%c{int res, t;res = 1 % c; t = a % c;while (b){if (b & 1){res = res * t % c;}t = t *
阅读更多...