Poj3090 欧拉函数求和
摘要:
推导,先看上三角形,坐标互素即为满足条件的点,顶点总数为欧拉函数的和#include <iostream>#include <stdio.h>using namespace std;int sum[1010];int eu(int n){ int i,ret=1; for(i=2;i*i<=n;i++) { if(n%i==0) { ... 阅读全文
posted @ 2012-03-09 21:25 Inpeace7 阅读(185) 评论(0) 推荐(0) 编辑