记录详情

Time Exceeded


  
# 状态 耗时 内存占用
#1 Accepted 3ms 2.25 MiB
#2 Accepted 3ms 2.25 MiB
#3 Accepted 5ms 2.25 MiB
#4 Accepted 3ms 2.25 MiB
#5 Accepted 6ms 2.246 MiB
#6 Time Exceeded ≥1002ms ≥117.707 MiB
#7 Accepted 761ms 81.125 MiB
#8 Time Exceeded ≥1003ms ≥117.625 MiB
#9 Time Exceeded ≥1003ms ≥116.0 MiB
#10 Accepted 666ms 73.75 MiB

代码

#include<iostream>
#include<cstdio>
#include<cmath>
#define Ll long long
using namespace std;
const int M=1e8;
int q[6000000],tot;
bool com[M+5];


int n,mo=1000000007,x;
int ans;
void findcom(){
    com[1]=1;
    for(int i=2;i<=n;i++){
        if(!com[i]){q[++tot]=i;}
        for(int j=1;j<=tot;j++){
            if(i*q[j]>n)break;
            com[i*q[j]]=1;
            if(i%q[j]==0)break;
        }
    }
}
int ksm(int x,int y){
	int ans=1;
	while(y>0){
		if(y&1)ans=(Ll)ans*x%mo;
		y=y>>1;
		x=(Ll)x*x%mo;
	}
	return ans;
}
int main(){
    scanf("%d",&n);
    findcom();
    ans=1;
    for(int i=1;i<=tot;i++){
    	x=q[i];
    	if(x>n)break;
    	int y=log(n)/log(x);
    	ans=(Ll)ans*ksm(x,y)%mo;
    }
    printf("%d",ans);
}

信息

递交者
类型
递交
题目
篝题
语言
C++
递交时间
2017-05-02 10:54:42
评测时间
2017-05-02 10:54:42
评测机
分数
70
总耗时
≥4459ms
峰值内存
≥117.707 MiB