博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ICPC2017 Urumqi - K - Sum of the Line
阅读量:4983 次
发布时间:2019-06-12

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

题目描述

Consider a triangle of integers, denoted by T. The value at (r, c) is denoted by Tr,c , where 1 ≤ r and 1 ≤ c ≤ r. If the greatest common divisor of r and c is exactly 1, Tr,c = c, or 0 otherwise.
Now, we have another triangle of integers, denoted by S. The value at (r, c) is denoted by S r,c , where 1 ≤ r and 1 ≤ c ≤ r. S r,c is defined as the summation    
Here comes your turn. For given positive integer k, you need to calculate the summation of elements in k-th row of the triangle S.

输入

The first line of input contains an integer t (1 ≤ t ≤ 10000) which is the number of test cases.
Each test case includes a single line with an integer k described as above satisfying 2 ≤ k ≤ 10^8 .

输出

For each case, calculate the summation of elements in the k-th row of S, and output the remainder when it divided
by 998244353.

样例输入

223

样例输出

15
所有与k不互质的数的贡献就是p1的倍数的贡献+p2的倍数的贡献+...+pu的倍数的贡献-p1*p2的倍数的贡献-p1*p3的倍数的贡献-...+p1*p2*p3的倍数的贡献+......以p1的倍数的贡献为例,他的贡献是(p1*1)^2+(p1*2)^2+...+(p1*[k/p1])^2,就是p^2*(1^2+2^2+...+(p1*[k/p1])^2
 
#include 
#define ll long longusing namespace std;const int N=1e4+10;const int p=998244353;int T,cnt,k;bool vis[N];int prime[N],a[N];void pre(){ for (int i=2;i
>=1; } return ret;}int fund(int n){ int sum=0; for (int i=1;i<=cnt;i++) { if (prime[i]>n) break; if (n%prime[i]==0) { a[sum++]=prime[i]; while (n%prime[i]==0) n/=prime[i]; } } if (n>1) a[sum++]=n; return sum;}void solve(int n){ ll nn=(ll)n; ll inv6=poww(6,p-2); ll ans=nn%p*(nn+1)%p*(2*nn+1)%p*inv6%p; int sum=fund(n); ll tmp=0; for (int i=1;i<(1<
>j)&1) { x=x*(ll)a[j]%p; s++; } } ll t=(ll)n/x; if (s&1) tmp=(tmp+x*x%p*t%p*(t+1)%p*(2*t+1)%p*inv6%p)%p; else tmp=((tmp-x*x%p*t%p*(t+1)%p*(2*t+1)%p*inv6%p)%p+p)%p; } ans=((ans-tmp)%p+p)%p; printf("%lld\n",ans);}int main(){ pre(); scanf("%d",&T); while (T--) { scanf("%d",&k); solve(k); } return 0;}
View Code
 

转载于:https://www.cnblogs.com/tetew/p/9513904.html

你可能感兴趣的文章
引导修复_win7系统如何修复启动项 win7系统启动项修复步骤【图文】
查看>>
4 指针运算_刻刻意练习—第六节Linux 基本指针用法(下)
查看>>
数据库dblink创建语句_SQL高级知识——DBLINK
查看>>
如何释放hdfs中的续租_0550-6.1-如何将普通用户增加到HDFS的超级用户组supergroup
查看>>
网页源码换行正则匹配_Python爬虫从入门到精通——基本库re的使用:正则表达式...
查看>>
ubuntu 自适应分辨率_编写xorg.conf 简单三行解决Ubuntu分辩率不可调的问题
查看>>
python调用mysql数据的接口_python 调用API接口 获取和解析 Json数据
查看>>
p6s与onvif_[ONVIF协议]实现ONVIF协议RTSP-Video-Stream与OnvifDeviceManage
查看>>
python线程同步condition_PYTHON线程知识再研习E---条件变量同步Condition-阿里云开发者社区...
查看>>
layui弹框传值_详解layui弹窗父子窗口之间传参数的方法
查看>>
华为双系统手机可以刷成单系统_华为手机双系统,1部手机能当2部用,打开3秒就能切换,真厉害...
查看>>
adb查看topactivity_使用adb shell dumpsys检测Android的Activity任务栈
查看>>
ext grid新增时默认值_HTMLCSS学习笔记(二十三)-- GRID布局
查看>>
重置mysql数据库_如何重置mysql数据库
查看>>
mysql安装目录utf8_彻底解决MySql在UTF8字符集下乱码问题
查看>>
mysql缺失关键字_ORA-00928: 缺失 SELECT 关键字
查看>>
mysql sp cursoropen_三个重要的游标sp_cursoropen
查看>>
mysql javadbaccess_【转】Java连接Mysql,SQL Server, Access,Oracle
查看>>
mysql项目案例电影_mysql数据库实战之优酷项目
查看>>
python excel数据框_python-将excel中的某些列读取到数据框
查看>>