結果

問題 No.2051 Divide
ユーザー viral8viral8
提出日時 2022-10-01 10:17:52
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 83,460 KB
最終ジャッジ日時 2024-12-23 14:51:32
合計ジャッジ時間 31,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
45,268 KB
testcase_01 AC 140 ms
83,460 KB
testcase_02 AC 242 ms
46,912 KB
testcase_03 AC 151 ms
82,192 KB
testcase_04 AC 146 ms
46,788 KB
testcase_05 AC 748 ms
83,404 KB
testcase_06 TLE -
testcase_07 AC 1,505 ms
41,360 KB
testcase_08 AC 947 ms
41,408 KB
testcase_09 AC 398 ms
41,216 KB
testcase_10 AC 181 ms
41,280 KB
testcase_11 AC 351 ms
40,648 KB
testcase_12 TLE -
testcase_13 AC 461 ms
41,588 KB
testcase_14 AC 1,468 ms
41,604 KB
testcase_15 TLE -
testcase_16 AC 158 ms
41,676 KB
testcase_17 TLE -
testcase_18 AC 1,553 ms
41,304 KB
testcase_19 AC 865 ms
41,548 KB
testcase_20 AC 451 ms
41,368 KB
testcase_21 AC 168 ms
41,152 KB
testcase_22 AC 1,018 ms
41,716 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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