結果

問題 No.2051 Divide
ユーザー ks2mks2m
提出日時 2022-08-21 12:48:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 76,440 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-10-10 05:49:30
合計ジャッジ時間 6,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,028 KB
testcase_01 AC 129 ms
54,136 KB
testcase_02 AC 125 ms
53,980 KB
testcase_03 AC 114 ms
53,024 KB
testcase_04 AC 118 ms
52,836 KB
testcase_05 AC 126 ms
54,032 KB
testcase_06 AC 128 ms
53,952 KB
testcase_07 AC 118 ms
52,852 KB
testcase_08 AC 120 ms
53,204 KB
testcase_09 AC 127 ms
53,848 KB
testcase_10 AC 124 ms
54,208 KB
testcase_11 AC 127 ms
54,120 KB
testcase_12 AC 118 ms
52,988 KB
testcase_13 AC 130 ms
54,132 KB
testcase_14 AC 116 ms
52,968 KB
testcase_15 AC 128 ms
53,944 KB
testcase_16 AC 127 ms
54,076 KB
testcase_17 AC 128 ms
53,904 KB
testcase_18 AC 125 ms
54,364 KB
testcase_19 AC 128 ms
54,048 KB
testcase_20 AC 115 ms
52,796 KB
testcase_21 AC 128 ms
54,296 KB
testcase_22 AC 129 ms
53,764 KB
testcase_23 AC 127 ms
53,928 KB
testcase_24 AC 130 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		sc.close();

		List<Integer> list = divList(a);
		int ans = 0;
		for (int i : list) {
			if (i % b == 0) {
				ans++;
			}
		}
		System.out.println(ans);
	}

	static List<Integer> divList(int n) {
		List<Integer> list = new ArrayList<>();
		int end = (int) Math.sqrt(n);
		for (int i = 1; i <= end; i++) {
			if (n % i == 0) {
				list.add(i);
			}
		}
		int i = end * end == n ? list.size() - 2 : list.size() - 1;
		for ( ; i >= 0; i--) {
			list.add(n / list.get(i));
		}
		return list;
	}
}
0