結果

問題 No.811 約数の個数の最大化
ユーザー k_6101k_6101
提出日時 2019-12-08 20:43:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 3,000 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 83,908 KB
実行使用メモリ 109,124 KB
最終ジャッジ日時 2024-06-10 04:02:20
合計ジャッジ時間 8,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,020 KB
testcase_01 AC 134 ms
54,144 KB
testcase_02 AC 799 ms
107,024 KB
testcase_03 AC 106 ms
52,796 KB
testcase_04 AC 118 ms
53,924 KB
testcase_05 AC 148 ms
56,536 KB
testcase_06 AC 184 ms
60,424 KB
testcase_07 AC 235 ms
60,816 KB
testcase_08 AC 490 ms
77,584 KB
testcase_09 AC 507 ms
79,792 KB
testcase_10 AC 394 ms
71,544 KB
testcase_11 AC 810 ms
106,432 KB
testcase_12 AC 314 ms
65,720 KB
testcase_13 AC 803 ms
109,124 KB
testcase_14 AC 826 ms
108,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    // 単純な素因数分解							
    Map<Long, Long> dec(long n){							
    	// 割った数を保存するマップ 3で2回割れたら、ans.get(3) == 2 となる						
    	Map<Long, Long> ans = new HashMap<Long, Long>();						
            							
    	long num = n;						
    	Long wk = 0L;						
    	// 2 ~ ルートn の間、繰り返す						
    	for(long i = 2; i * i <= n && num != 1; ++i){						
    		// i で割り切れる間、割る					
    		while(num % i == 0){					
    			num /= i;				
    			wk = ans.get(i);				
    			if(wk == null) {				
    				ans.put(i, 1L);			
    			} else {				
    				ans.replace(i, (wk+1L));			
    			}				
    		}					
    	}						
    	if(num != 1) {						
    		wk = ans.get(num);// 最後に残った数も含める					
    		if(wk == null) {					
    			ans.put(num, 1L);				
    		} else {					
    			ans.replace(num, (wk+1L));				
    		}					
    	}						
    	return ans;						
    }							
    Map<Long, Map<Long, Long>> DEC = new HashMap<>();
    public void solve() {
    	long N = Integer.parseInt(sc.next());
    	int K = Integer.parseInt(sc.next());
    	for (long i = 1; i <= N; i++) {
			DEC.put(i, dec(i));
		}
    	long cnt, max = -1, ans = -1, wk;
    	for (long i = 1; i < N; i++) {
			if(DEC.get(i) == null)	continue;
    		cnt = 0;
    		for (long key : DEC.get(N).keySet()) {
    			if(DEC.get(i).get(key) == null)	continue;
//    			out.println(" i = " + i + "  key = " + key + "  min("
//    					 + DEC.get(i).get(key) + ", " + DEC.get(N).get(key) + ")");
				cnt += Math.min(DEC.get(i).get(key), DEC.get(N).get(key));
			}
//    		out.println("[" + i + "]  の共通の素因数の数  = " + cnt);
    		if(cnt < K)		continue;
    		wk = 1;
    		for (long key : DEC.get(i).keySet()) {
				wk *= (DEC.get(i).get(key) + 1);
			}
//    		out.println("[" + i + "]  の約数の数  = " + wk);
    		if(max < wk) {	max = wk;	ans = i;	}
    	}
    	out.println(ans);
    }
    // ==================================================================
}
0