結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー merlinmerlin
提出日時 2021-07-21 23:12:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 80,400 KB
実行使用メモリ 61,020 KB
最終ジャッジ日時 2024-10-03 02:37:11
合計ジャッジ時間 17,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
53,808 KB
testcase_01 AC 654 ms
60,600 KB
testcase_02 AC 504 ms
58,432 KB
testcase_03 AC 537 ms
60,740 KB
testcase_04 AC 531 ms
61,020 KB
testcase_05 AC 594 ms
60,948 KB
testcase_06 AC 649 ms
60,256 KB
testcase_07 AC 528 ms
59,660 KB
testcase_08 AC 718 ms
59,952 KB
testcase_09 AC 505 ms
59,984 KB
testcase_10 AC 336 ms
55,244 KB
testcase_11 AC 370 ms
58,220 KB
testcase_12 AC 382 ms
57,928 KB
testcase_13 AC 379 ms
56,796 KB
testcase_14 AC 389 ms
58,252 KB
testcase_15 AC 368 ms
57,068 KB
testcase_16 AC 366 ms
56,564 KB
testcase_17 AC 378 ms
58,208 KB
testcase_18 AC 370 ms
57,884 KB
testcase_19 AC 137 ms
46,404 KB
testcase_20 AC 132 ms
46,580 KB
testcase_21 AC 140 ms
46,276 KB
testcase_22 AC 132 ms
46,280 KB
testcase_23 AC 131 ms
46,284 KB
testcase_24 AC 143 ms
46,320 KB
testcase_25 AC 130 ms
46,292 KB
testcase_26 AC 139 ms
46,128 KB
testcase_27 AC 134 ms
46,500 KB
testcase_28 AC 113 ms
42,292 KB
testcase_29 AC 110 ms
42,328 KB
testcase_30 AC 107 ms
42,180 KB
testcase_31 AC 106 ms
42,612 KB
testcase_32 AC 105 ms
42,444 KB
testcase_33 AC 112 ms
41,936 KB
testcase_34 AC 114 ms
42,436 KB
testcase_35 AC 105 ms
42,164 KB
testcase_36 AC 121 ms
42,356 KB
testcase_37 AC 105 ms
42,204 KB
testcase_38 AC 99 ms
42,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();

        int N=500000,pr[]=new int[N+1],i,j;
        ArrayList<Integer> p=new ArrayList<>();
        for(i=2;i<=N;i++)
        if(pr[i]==0)
        {
            p.add(i);
            for(j=i;j<=N;j+=i) pr[j]=i;
        }

        int t=Integer.parseInt(bu.readLine());
        while(t-->0)
        {
            long n=Long.parseLong(bu.readLine());
            long sm=-1; int fac=1,c;
            HashMap<Integer,Integer> hm=new HashMap<>();

            for(int x:p)
            if(n%x!=0) {sm=x; break;}
            else
            {
                long y=n; c=0;
                while(y%x==0) {y/=x; c++;}
                fac*=c+1;
                hm.put(x,c);
            }

            i=2;
            while(i<sm)
            {
                int x=i,fa2=fac;
                while(x!=1)
                {
                    int cn=0,pri=pr[x];
                    while(x%pri==0) {x/=pri; cn++;}
                    fa2/=hm.getOrDefault(pri,0)+1;
                    fa2*=cn+1+hm.getOrDefault(pri,0);
                }
                //System.out.println(i+" "+fa2);
                if(fa2==2*fac) {sm=i; break;}
                i++;
            }
            sm*=n;
            sb.append(sm+"\n");
        }
        System.out.print(sb);
    }
}
0