結果

問題 No.2051 Divide
ユーザー viral8viral8
提出日時 2022-10-01 10:17:52
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 61,472 KB
最終ジャッジ日時 2024-06-06 03:43:00
合計ジャッジ時間 13,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
60,992 KB
testcase_01 AC 120 ms
53,804 KB
testcase_02 AC 203 ms
54,072 KB
testcase_03 AC 138 ms
54,040 KB
testcase_04 AC 127 ms
54,020 KB
testcase_05 AC 664 ms
53,888 KB
testcase_06 AC 1,734 ms
54,116 KB
testcase_07 AC 1,283 ms
53,792 KB
testcase_08 AC 799 ms
52,948 KB
testcase_09 AC 333 ms
52,984 KB
testcase_10 AC 160 ms
54,064 KB
testcase_11 AC 309 ms
53,936 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int ans = 0;
        for(int i=1;i<=A;i++)
            if(A%i==0&&i%B==0)
                ans++;
        System.out.println(ans);
    }
}
0