日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdu-2204 Eddy's爱好 nyoj 526

發布時間:2025/3/16 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdu-2204 Eddy's爱好 nyoj 526 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

hdu :?http://acm.hdu.edu.cn/showproblem.php?pid=2204??

nyoj : ?http://acm.nyist.net/JudgeOnline/problem.php?pid=526? ?

題解:容斥原理

#include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<cmath> using namespace std; typedef long long LL; #define eps 1e-8 LL prime[] = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61}; LL a[] = {6,10,14,15,21,22,26,33,34,35,38,39,46,51,55,57,58,62}; LL n; LL find(LL x){ //找1~n中開根號x次方的數有多少個,每次把1去掉,最后的結果再加1return (LL)(pow(n*1.0,1.0 / x) + eps) - 1; } void solve(){//根據容斥原理奇加偶減LL sum = 0;for(int i = 0;i < 18;i++)sum += find(prime[i]);sum += find(30);// 2 * 3 * 5sum += find(42);// 2 * 3 * 7for(int i = 0;i < 18;i++)sum -= find(a[i]);printf("%lld\n",sum+1); } int main(){while(~scanf("%lld",&n)){solve();}return 0; }

總結

以上是生活随笔為你收集整理的hdu-2204 Eddy's爱好 nyoj 526的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。