結果

問題 No.2051 Divide
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-21 13:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 59,276 KB
最終ジャッジ日時 2024-10-10 06:05:11
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,420 KB
testcase_01 AC 41 ms
59,152 KB
testcase_02 AC 41 ms
59,036 KB
testcase_03 AC 42 ms
57,848 KB
testcase_04 AC 39 ms
58,748 KB
testcase_05 AC 40 ms
57,724 KB
testcase_06 AC 40 ms
57,932 KB
testcase_07 AC 43 ms
58,644 KB
testcase_08 AC 41 ms
57,580 KB
testcase_09 AC 42 ms
58,336 KB
testcase_10 AC 40 ms
57,720 KB
testcase_11 AC 41 ms
58,604 KB
testcase_12 AC 40 ms
58,004 KB
testcase_13 AC 42 ms
57,716 KB
testcase_14 AC 41 ms
57,852 KB
testcase_15 AC 41 ms
57,172 KB
testcase_16 AC 40 ms
57,984 KB
testcase_17 AC 42 ms
58,840 KB
testcase_18 AC 41 ms
58,452 KB
testcase_19 AC 41 ms
58,260 KB
testcase_20 AC 42 ms
58,432 KB
testcase_21 AC 41 ms
57,780 KB
testcase_22 AC 41 ms
58,040 KB
testcase_23 AC 40 ms
59,276 KB
testcase_24 AC 41 ms
57,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
ans = set()
for i in range(1,10**5):
    if a%i:
        continue
    if i%b == 0:
        ans.add(i)
    x = a//i
    if x%b == 0:
        ans.add(x)
print(len(ans))
0