博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
URAL 1048 Superlong Sums
阅读量:6584 次
发布时间:2019-06-24

本文共 485 字,大约阅读时间需要 1 分钟。

URAL_1048

    高精度加法。

#include
#include
#define MAXD 1000010int a[MAXD], N;void solve(){ int i, x, y, s, c; for(i = 0; i < N; i ++) { scanf("%d%d", &x, &y); a[i] = x + y; } c = 0; for(i = N - 1; i >= 0; i --) { s = c + a[i]; c = s / 10; a[i] = s % 10; } for(i = 0; i < N; i ++) printf("%d", a[i]); printf("\n");}int main(){ while(scanf("%d", &N) == 1) { solve(); } return 0;}

转载地址:http://rgxno.baihongyu.com/

你可能感兴趣的文章
openldap安装
查看>>
[leetcode]count and say
查看>>
润乾报表 - 缓存问题
查看>>
利用IFormattable接口自动参数化Sql语句
查看>>
泛型Dictionary的用法详解
查看>>
明晰三种常见存储技术:DAS、SAN和NAS
查看>>
ContentProvider简单介绍
查看>>
Visual Studio 2014 CTPs 下载 和C# 6.0 语言预览版介绍
查看>>
js混淆 反混淆 在线
查看>>
WinForm 之 程序启动不显示主窗体
查看>>
FragmentTransaction.replace() 你不知道的坑
查看>>
分布式消息队列 Kafka
查看>>
模拟退火算法
查看>>
Solr 按照得分score跟指定字段相乘排序
查看>>
StringUtils方法全集介绍
查看>>
性能调校
查看>>
VMware workstation虚拟网卡类型介绍
查看>>
C# web 更新折腾记
查看>>
IBM主机巡检操作文档
查看>>
zabbix企业应用之Mysql主从监控
查看>>