2155895064 3 2 2 10000000000 10 样例输出 2238728 1 10000000000 样例解释 查询一: n=23×32×234×107 其中素因子 3 指数为 2,107 指数为 1。将这两项从 n 中除去后,剩余项的乘积为 23×234=2238728。 查询二: 所有项均被除去,输出 1。 查询三: 所有项均保留,将 n 原样输出。 子任务 40% 的测...
q = int(input()) inq = [[i for i in map(int, input().split())]for j in range(q)] for i in range(q): zhengshu = inq[i][0] temp = [] while zhengshu != 1: for j in range(2, zhengshu+1): if zhengshu % j == 0: temp.append(j) zhengshu = zhengshu//j break ...
ccfcsp 202312-2 因子化简 样例输入 32155895064 32 210000000000 10 样例输出 2238728110000000000 代码:(暴力) #include <bits/stdc++.h>using namespace std;const long long int maxn = 100005;long long int n, k;long long int q;pair<long long int, long long int> tp[maxn];long long int zhishu...
using namespace std; bool isprime(ll n){ int i; if(n<=1) return false; int sq=(int)sqrt(1.0n); for(i=2;i<=sq;i++){ if(n%i==0) return false; } return true; } const int maxn=10010; int prime[maxn],pnum=0; void findprime(){ int i; for(i=2;i<=1e5;i++){ if...
CCFCSP202312-2因子化简 (质数筛法)C/C++ 满分 C/C++题解: 具体思路:先用质数筛法找到1000以内的全部质数,然后逐一处理即可 #include<bits/stdc++.h>using namespace std;int q;long long n,k,ans;vector<long long> Sushu;void is_prime(){ bool isPrime[1001];for(int i=2;i<=1000;i++){isPrime...