Rightmost Digit【HDOJ1061】

2024-03-04 15:08
文章标签 digit rightmost 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 * t % c;b >>= 1;}return res;
}
int main()
{int T;cin >> T;while (T--){int n;cin >> n;cout << mod_exp(n, n, 10) << endl;}system("pause");return 0;
}

这篇关于Rightmost Digit【HDOJ1061】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/773569

相关文章

Kaggle竞赛——手写数字识别(Digit Recognizer)

目录 1. 数据集介绍2. 数据分析3. 数据处理与封装3.1 数据集划分3.2 将数据转为tensor张量3.3 数据封装 4. 模型训练4.1 定义功能函数4.1 resnet18模型4.3 CNN模型4.4 FCNN模型 5. 结果分析5.1 混淆矩阵5.2 查看错误分类的样本 6. 加载最佳模型7. 参考文献 本次手写数字识别使用了resnet18(比resnet50精度更

leetcode 902. Numbers At Most N Given Digit Set

题目链接 Given an array of digits which is sorted in non-decreasing order. You can write numbers using each digits[i] as many times as we want. For example, if digits = ['1','3','5'], we may write number

Leetcode181:Number of Digit One

Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n. For example: Given n = 13, Return 6, because digit 1 occurred in the followin

(LeetCode)Nth Digit --- 第几位数字

Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... Note: n is positive and will fit within the range of a 32-bit signed integer (n < 231).

【规律题】Backward Digit Sums

【POJ3187】【洛谷1118】Backward Digit Sums Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other) Problem Description FJ and his cows enjoy playing a mental game. They write do

HDU Specialized Four_Digit Numbers

题目传送门: http://acm.hdu.edu.cn/game/entry/problem/show.php?chapterid=1&sectionid=2&problemid=24 本题核心是基本功是进制转换,分解方法是除模取余法,写三个函数比较清晰。 #include<stdio.h>using namespace std;//HDU Specialized Four_Digit

LeetCode-400. Nth Digit

问题:https://leetcode.com/problems/nth-digit/?tab=Description Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, **分析:**S1=1 S2=12 S3=123 S4=1234 … S9=123456789 S10

leetcode No233. Number of Digit One

Question: Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n. For example: Given n = 13, Return 6, because digit 1 occurred in th

HDU 1597 find the nth digit HDU 2141 Can you find it?

题目链接~~> HDU 1597 find the nth digit 做题感悟:开始做时直接就考虑到了二分可以解决这个问题,没考虑找规律等等,本以为自己想的方法很好,但是百度了一下。 方法一:             解题思路:用二分的方法求出在第几个数可以满足 n ,然后就可以对 9 取余了。 代码: #include<stdio.h>__int64 f[67000] ;__

[Kaggle]Digit Recognizer

地址:https://www.kaggle.com/c/digit-recognizer 这同样是一道入门的KAGGLE题目。题目大意是给出一系列的灰度图像(用CSV表格表示像素),来预测该图像是何种数字。这是一个比较经典的图片,对应的方法有很多。可以使用传统的机器学习算法来进行计算,也可以使用深度学习的方法进行。在这一次我使用的是机器学习的SVC(线性支持分类器)来进行处理的。 第一步依然是