結果
問題 | No.368 LCM of K-products |
ユーザー | 37zigen |
提出日時 | 2016-04-30 11:27:46 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,330 bytes |
コンパイル時間 | 2,812 ms |
コンパイル使用メモリ | 82,000 KB |
実行使用メモリ | 62,688 KB |
最終ジャッジ日時 | 2024-10-04 23:58:27 |
合計ジャッジ時間 | 9,901 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
package yukicoder; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Main{ public static void main(String[] args)throws Exception{ new Main().solve(); } int mod=1000000007; void solve(){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int k=sc.nextInt(); Prime prime=new Prime(); ArrayList<Integer> primeList=prime.primeList(1000000000); HashMap<Integer,ArrayList<Integer>>hm=new HashMap<>(); for(int i=0;i<n;i++){ int a=sc.nextInt(); for(Factor f:prime.primeFactorF(primeList, a)){ ArrayList<Integer> al=hm.get(f.base); if(al==null){ al=new ArrayList<>(); } al.add(f.exp); hm.put(f.base, al); } } long ans=1; for(Map.Entry<Integer,ArrayList<Integer>> e:hm.entrySet()){ ArrayList<Integer> al=e.getValue(); al.sort(Collections.reverseOrder()); int max=Math.min(k,al.size()); int sum=0; for(int i=0;i<max;i++){ sum+=al.get(i); } ans=ans*pow(e.getKey(),sum,mod)%mod; } System.out.println(ans); } long pow(long a,long n,long mod){ long ans=1; long pow=a; while(n>=1){ if(n%2==0){ pow=pow*pow; pow%=mod; n/=2; }else if(n%2==1){ ans*=pow; ans%=mod; n--; } } return ans; } void tr(Object...o){System.out.println(Arrays.deepToString(o));} class Prime{ boolean[] isPrimeArray(int max){ boolean[] isPrime=new boolean[max+1]; Arrays.fill(isPrime, true); isPrime[0]=isPrime[1]=false; for(int i=2;i*i<=max;i++){ if(isPrime[i]){ for(int j=2;j*i<=max;j++){ isPrime[j*i]=false; } } } return isPrime; } ArrayList<Integer> primeList(int max){ boolean[] isPrime=isPrimeArray(max); ArrayList<Integer> primeList=new ArrayList<Integer>(); for(int i=2;i<=max;i++){ if(isPrime[i]){ primeList.add(i); } } return primeList; } ArrayList<Factor> primeFactorF(ArrayList<Integer> primeList,long num){ ArrayList<Factor> ret=new ArrayList<Factor>(); for(int p:primeList){ int exp=0; while(num%p==0){ num/=p; exp++; } if(exp>0)ret.add(new Factor(p,exp)); } return ret; } } class Factor{ int base,exp; Factor(int base,int exp){ this.base=base; this.exp=exp; } } }