結果
| 問題 | 
                            No.2051 Divide
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-01-06 18:38:40 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 136 ms / 2,000 ms | 
| コード長 | 1,223 bytes | 
| コンパイル時間 | 2,514 ms | 
| コンパイル使用メモリ | 78,964 KB | 
| 実行使用メモリ | 41,932 KB | 
| 最終ジャッジ日時 | 2024-11-30 13:41:11 | 
| 合計ジャッジ時間 | 7,110 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 23 | 
ソースコード
import java.util.*;
import java.io.*;
import java.math.*;
 
public class Main{
    public static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    public static final int INFI = Integer.MAX_VALUE;
    public static final long INFL = Long.MAX_VALUE;
    public static final int MOD = 1000000007;
    public static PrintWriter output = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    public static final int [] dy4 = {0,1,0,-1};
    public static final int [] dx4 = {1,0,-1,0};
    public static ArrayList<ArrayList<Integer>> list = new ArrayList<>();
    public static ArrayList<Integer> answer = new ArrayList<>();
    public static boolean [] visited ;
    public static void main(String[] args) throws IOException{
        StringTokenizer st;
        //st = new StringTokenizer(buff.readLine());
        int A = sc.nextInt();
        int B = sc.nextInt();
        Set<Integer> ans = new HashSet<>();
        for(int i=1;i<=Math.sqrt(A);i++) {
            if(A % i == 0) {
                if((A/i)%B == 0) ans.add(A/i);
                if(i % B == 0) ans.add(i);
            }
        }
        output.print(ans.size());
        output.flush();
    }
}