首页 > 其他分享 >【CF1542C】Strange Function(数论)

【CF1542C】Strange Function(数论)

时间:2023-08-31 21:55:05浏览次数:41  
标签:Function CF1542C int ll Strange ans mod

题目大意:


#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1e9+7;
ll n;
ll lcm(ll x,ll y){
	return x/__gcd(x,y)*y;
}
int main(){
	int T;
	cin >> T;
	while(T--){
		cin >> n;
		ll ans=n%mod;
		for(ll i=1,j=1;n/j;i++,j=lcm(j,i)){
			ans=(ans+n/j)%mod;
		}
		cout << ans << endl;
	}
	return 0;
}

标签:Function,CF1542C,int,ll,Strange,ans,mod
From: https://www.cnblogs.com/ningziang/p/17670551.html

相关文章

  • normalizeKey is not a function #element #vue #疑难杂症
    normalizeKeyisnotafunction#element#vue#疑难杂症原因是组件中使用了import{Search}from'@element-plus/icons-vue'解决方案是,在main.ts中,将Vue的引入置顶。 //TOP import{createApp}from'vue' importAppfrom'./App.vue&......
  • hdu:A strange lift(bfs)
    ProblemDescriptionThereisastrangelift.Theliftcanstopcanateveryfloorasyouwant,andthereisanumberKi(0<=Ki<=N)oneveryfloor.Thelifthavejusttwobuttons:upanddown.Whenyouatfloori,ifyoupressthebutton“UP”,youwi......
  • TypeError: clone.weekday is not a function
    依赖库版本:vue3+antdforvuev3.xdayjsversion^1.11.9使用dayjs格式化表单中的日期控件值后,点击日期选择器直接报错解决:引入dayjs插件importdayjsfrom'dayjs'importadvancedFormatfrom'dayjs/plugin/advancedFormat'importcustomParseFormatfrom'dayjs/plu......
  • [CF1824D] LuoTianyi and the Function
    题目描述LuoTianyigivesyouanarray$a$of$n$integersandtheindexbeginsfrom$1$.Define$g(i,j)$asfollows:$g(i,j)$isthelargestinteger$x$thatsatisfies${a_p:i\lep\lej}\subseteq{a_q:x\leq\lej}$while$i\lej$;and......
  • 如何使用 ABAP Function Module SEO_CLASS_CREATE_COMPLETE 创建 ABAP class
    SEO_CLASS_CREATE_COMPLETE函数模块用于在SAP系统中创建一个完整的SAP类。在SAPABAP中,类是面向对象编程的基本构建块,它允许开发者将数据和行为组织到一个单一的实体中。SAP的类通常用于描述业务对象、数据结构和业务逻辑,以实现灵活性和可维护性。SEO_CLASS_CREATE_COMPLETE函数......
  • Nodejs Function遇见WorkerProcessExitException : node exited with code -107374079
    问题描述NodejsFunction,使用BlobTrigger用于处理上传到StorageBlob的文件,但是最近发现偶发报错:Exceptionwhileexecutingfunction:Functions.AzureBlobTrigger--->Microsoft.Azure.WebJobs.Script.Workers.WorkerProcessExitException:nodeexitedwithcode-1073740791......
  • 【Azure Function App】Nodejs Function遇见WorkerProcessExitException : node exite
    问题描述NodejsFunction,使用BlobTrigger用于处理上传到StorageBlob的文件,但是最近发现偶发报错:Exceptionwhileexecutingfunction:Functions.AzureBlobTrigger--->Microsoft.Azure.WebJobs.Script.Workers.WorkerProcessExitException:nodeexitedwithcode-10737407......
  • [React Typescript] Function overload in React hook
    import{useState}from"react";import{Equal,Expect}from"../helpers/type-utils";typeUseStateReturnValue<T>={value:T;set:React.Dispatch<React.SetStateAction<T>>;};exportfunctionuseStateAsObjec......
  • Callback Function Essence
    IncludeExampleInput:Iama.routeexecutefinish.Iamb.routeexecutefinish.WhatisCallbackCallbackfunctiondefine:Ifafunctionisthreatedasafunctionparameter,thenthefunctionnamedaCallbackfunction.Callbackfunctionisaverycom......
  • KubeSphere 社区双周报 | Java functions framework 支持 SkyWalking | 2023.8.4-8.17
    KubeSphere社区双周报主要整理展示新增的贡献者名单和证书、新增的讲师证书以及两周内提交过commit的贡献者,并对近期重要的PR进行解析,同时还包含了线上/线下活动和布道推广等一系列社区动态。本次双周报涵盖时间为:2023.08.04-2023.08.17。贡献者名单新晋KubeSphereCon......