easy n%m

news/2024/12/2 22:00:00/

easy n%m

题目描述

I have a very simple problem for you. Given two integers n and m, your job is to calculate the n % m.

输入

The input will consist of a series of pairs of integers n and m, separated by a space, one pair of integers per line. n<=10100,1<=m<=109

输出

For each pair of input integers a and b you should output the n % m in one line, and with one line of output for each line in input.

样例输入

98757550230217155706156731058600777176 867
837742186949589961446822476827333 15260
751432949647353304314590769697032412519700 16334

样例输出

366
10753
7150

#include<iostream>
#include<string>
const int maxn=10000;
using namespace std;
int main()
{ios::sync_with_stdio(false);//小妹的习惯不用管 cin.tie(0);cout.tie(0);string a;//用字符串来存储大数 int mod;//这是你要取余的数 while(cin>>a>>mod){int l=a.size();int s[maxn];int ans=0;for(int i=0;i<l;i++)//这个就是把字符型数字变成整型数字 {s[i]=a[i]-'0';}for(int i=0;i<l;i++)//每步一取模 {ans=(ans*10+s[i])%mod;}cout<<ans<<endl;}return 0;
}

http://www.ppmy.cn/news/290149.html

相关文章

从零开始的软路由之爱快虚拟机搭建openwrt

缘起 上篇文章我们介绍了爱快软路由的搭建方法&#xff0c;成功了实现了软路由的初级布置——能上网了。接下来就是搭建双软路由中的另一个openwrt了&#xff0c;上期介绍了爱快的特点&#xff0c;主要是用来多拨&#xff0c;分流&#xff0c;流控等操作&#xff0c;在这些方面…

Shell常用的指令

Shell 常用的指令 常用的指令 重定向输入输出 : > < --stdin 输入&#xff1a; > [rootmyserver ~]# echo "123456" >a.txt [rootmyserver ~]# cat a.txt 123456输出&#xff1a; < cat < /etc/passwd > a.txt –stdin echo "123456…

FPGA 的数字信号处理:重写 FIR 逻辑以满足时序要求

在上一篇文章中&#xff08;FPGA 的数字信号处理&#xff1a;Verilog 实现简单的 FIR 滤波器&#xff09;演示了在 Verilog 中编写自定义 FIR 模块的初始demo。该项目在行为仿真中正常&#xff0c;但在布局和布线时未能满足时序要求。 所以今天的文章让我们来看看当设计不能满足…

比较好用的两个IP定位网站

国外的&#xff1a;https://dev.maxmind.com/geoip/ 国内的&#xff1a;http://www.cz88.net/

最强提示词技巧,没有之一!(全网首发)

我们总是希望AI按照我们的要求来进行回复。 通常&#xff0c;当回复不符合预期的时候&#xff0c;我们需要通过不断优化提示词&#xff0c;让AI慢慢学习&#xff0c;慢慢领悟我们的意图&#xff0c;直到符合我们的预期。而这个过程&#xff0c;往往需要长时间多轮往复。 举个栗…

golang 根据IP获取真实地址(不联网,单机版)

package mainimport ("fmt""github.com/yangtizi/cz88" )func main() {fmt.Println(cz88.GetAddress("47.56.100.100")) } $go mod init cz88$go build -o cz88.exe$./cz88.exe香港 阿里云

【C语言】ASCII码转化成UTF-8/GBK转UTF-8

ASCII码转化成UTF-8 #include "stdafx.h" #include <windows.h> #include <cassert>int AsciToUtf8(char* pSrc, unsigned int nSrcLen, char* pBuffer, unsigned int nBufferLen) {assert(pSrc ! NULL);int nRet(0);int nUtf16Len MultiByteToWideCha…

【Go】获取域名ip及所在地

获取域名ip 代码 addr, err : net.ResolveIPAddr("ip", "www.baidu.com")if err ! nil {fmt.Println("Resolution error", err.Error())}ip : addr.IP.String()fmt.Println("ip:" ip) 结果 获取所在地 导入包 github.com/yangtiz…