hdu_1013_Digital Roots(模拟)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1013

题意:给一个大数,必须用数组存储,然后求它每个位数之和,如果小于10则输出结果,如果大于10,继续求它和的每位数之和。

例如:1000个9,和为9000,9000>10,再求9000每位数上的和,结果为9,符合题意,则输出。

<span style="font-size:18px;">#include <iostream>
#include <cstring>
using namespace std;
char num[10000];
int res(int n)
{
	if(n < 10)
		return n;
	int i = 10;
	int total = 0;
	while(n/i)
	{
		total += (n % i / (i / 10));
		i = i * 10;
	}
	total += n/(i/10);
	return res(total);
}
void f(char *n)
{
	int len = strlen(num);
	for(int i = 0;i < len;i++)
		a[i] = num[i] - 48;
	int total = 0;
	for(int i = 0;i < len;i++)
	{
		total += a[i];
	}
	cout << res(total) << endl;
}
int main(int argc, char *argv[])
{
	while(1)
	{
		cin >> num;
		if(num[0] == 48)
			return 0;
		f(num);
	}
	return 0;
}</span>
时间: 2024-10-10 16:40:55

hdu_1013_Digital Roots(模拟)的相关文章

HDU1013 Digital Roots 模拟//数学题

Problem Description: The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two or more digits, those digits

HDU 1013.Digital Roots【模拟或数论】【8月16】

Digital Roots Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two or more digits,

hdu 1013 Digital Roots(数论 模拟)

#include<cstdio> #include<cstring> #include<iostream> using namespace std; char num[10000]; int get_sum() { int ret=0; for(int i=0;i<strlen(num);i++) { ret+=(num[i]-'0')%10; } return ret; } int main() { int i,j,k; while(scanf("%s

HDOJ(1013) ——Digital Roots(字符串模拟题)

Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two or more digits, those digits a

Java内存区域与模拟内存区域异常

我把Java的内存区域画了一张思维导图,以及各区域的主要功能. 模拟Java堆溢出 Java堆用于存储对象实例,只要不断地创建对象并且保证GC ROOTS到对象之间有可达路径避免被回收机制清除,就可以模拟出Java堆溢出. package hxl.insist.jvm; import java.util.ArrayList; import java.util.List; /** * 下面是JVM Args: * -Xms20m 堆的最小值 -Xmx20m 堆的最小值 (设置为一样可避免堆自动扩展

HDU 1013 Digital Roots(两种方法,求数字根)

Digital Roots Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 67949    Accepted Submission(s): 21237 Problem Description The digital root of a positive integer is found by summing the digits of

CentOS系统启动及内核大破坏模拟实验

讲过了centos的启动流程,此时是不是想来点破坏呢?那就尽情的玩耍吧,记得在实验之前拍个快照,万一哪个环节错误恢复不回来了呢,毕竟数据无价,话不多说,开始. 一.删除伪系统根.(ramdisk文件) (1)模拟误操作删除ramdisk文件. ①模拟误删除initramfs-3.10.0-514.el7.x86_64.img文件. ②为当前正在使用的内核重新制作ramdisk文件 格式为:mkinitrd /boot/initramfs-$(uname -r).img $(uname -r) (

NYOJ 2356: 哈希计划【模拟】

题目描述 众所周知,LLM的算法之所以菜,就是因为成天打游戏,最近LLM突然想玩<金庸群侠传X>,结果进去后各种被虐,LLM就开始研究这个游戏的代码,顺便还学会了一点点点点lua语言,然后就开始了伟大的改游戏代码之旅,然后LLM发现自己too young了,这个游戏把所有的文本都进行了哈希,如果自己改了代码或者剧情文本的话它哈希出来的值就会和原来的哈希值不一样......然后游戏就会打不开.....,现在LLM发现了文本的哈希函数,要求你写个程序,功能为: 输入一段字符串,输出一个哈希值 为了

爬虫——模拟点击动态页面

动态页面的模拟点击: 以斗鱼直播为例:http://www.douyu.com/directory/all 爬取每页的房间名.直播类型.主播名称.在线人数等数据,然后模拟点击下一页,继续爬取 #!/usr/bin/python3 # -*- conding:utf-8 -*- __author__ = 'mayi' """ 动态页面的模拟点击: 模拟点击斗鱼直播:http://www.douyu.com/directory/all 爬取每页房间名.直播类型.主播名称.在线人数