上海交通大学机试 整除问题 Easy

Posted songlinxuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上海交通大学机试 整除问题 Easy相关的知识,希望对你有一定的参考价值。

基本思想:

无;

 

关键点:

无;

 

 

#include<iostream>
#include<vector>
#include<algorithm>
#include<math.h>
#include<string>
using namespace std;

void mutlip(string &s, int n) {
	int carry = 0;
	for (int i = 0; i < s.size(); i++) {
		int temp = (s[i] - ‘0‘)*n + carry;
		s[i] = temp % 10+‘0‘;
		carry = temp / 10;
	}
	while (carry != 0) {
		s += char(carry % 10+‘0‘);
		carry /= 10;
	}
}

int devide(string &s, int n, int r) {
	string res = s;
	for (int i = s.size() - 1; i >= 0; i--) {
		int temp = (s[i] - ‘0‘) + r * 10;
		res[i] = char(temp / n + ‘0‘);
		r = temp % n;
	}
	while (res.size() > 0 && res[res.size() - 1] == ‘0‘)
		res.pop_back();
	s = res;
	return r;
}

int main() {
	int a, b;
	while (cin >> a >> b) {
		string jc = to_string(a);
		for (int i = a - 1; i > 0; i--) {
			mutlip(jc, i);
		}
		int cnt = 0;
		while (devide(jc, b, 0) == 0) {
			cnt++;
		}
		cout << cnt << endl;
	}
}

  

以上是关于上海交通大学机试 整除问题 Easy的主要内容,如果未能解决你的问题,请参考以下文章

吉林大学机试 连通图 Easy

浙江大学机试 畅通工程 Easy

清华大学机试 反向输出 Easy

北京大学机试 单词替换 Easy

清华大学机试 abc Easy

清华大学机试 特殊乘法 Easy