博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 11417
阅读量:6706 次
发布时间:2019-06-25

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

#include <cstdio>
#include <iostream>
using namespace std;
int n ;
unsigned long long ans;
int gcd(int x,int y)
{
return x%y==0 ? y : gcd(y,x%y);
}
int main()
{
while(scanf("%d",&n)!=EOF && n)
{
ans = 0 ;
for(int i=1;i<n;i++)
for(int j=i+1;j<=n;j++)
ans += gcd(i,j);
cout << ans <<endl;
}
return 0;
}

转载于:https://www.cnblogs.com/ouqingliang/p/9245292.html

你可能感兴趣的文章
hdu 1010:Tempter of the Bone(DFS + 奇偶剪枝)
查看>>
文件和目录之umask函数
查看>>
ecmall的物流配送体系改造
查看>>
[Python]网络爬虫(九):百度贴吧的网络爬虫(v0.4)源码及解析(转)
查看>>
hdu4292Food(最大流Dinic算法)
查看>>
手机网站判断及跳转
查看>>
[LeetCode] Text Justification
查看>>
webdriver API study
查看>>
QoS令牌桶工作原理
查看>>
android工程gen目录中R.java包名是怎么确定
查看>>
【Machine Learning in Action --4】朴素贝叶斯过滤网站的恶意留言
查看>>
Java基础之类Class使用
查看>>
Ubuntu+Eclipse+ADT+Genymotion+VirtualBox开发环境搭建
查看>>
Android 学习之 开源项目PullToRefresh的使用
查看>>
Matplot中文乱码完美解决方式
查看>>
stm32学习笔记----双串口同时打开时的printf()问题
查看>>
Java代码简化神器-Lombok
查看>>
How do I create a List in Scala?
查看>>
lintcode:移动零
查看>>
tomcat的webappclassloader中一个奇怪的异常信息
查看>>