結果

問題 No.2051 Divide
ユーザー roarisroaris
提出日時 2022-08-23 07:03:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 63,892 KB
最終ジャッジ日時 2024-10-10 14:05:49
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,000 KB
testcase_01 AC 42 ms
55,760 KB
testcase_02 AC 45 ms
59,800 KB
testcase_03 AC 45 ms
60,868 KB
testcase_04 WA -
testcase_05 AC 45 ms
59,876 KB
testcase_06 AC 45 ms
60,260 KB
testcase_07 AC 44 ms
60,620 KB
testcase_08 AC 44 ms
60,708 KB
testcase_09 AC 44 ms
60,052 KB
testcase_10 WA -
testcase_11 AC 45 ms
59,980 KB
testcase_12 AC 44 ms
59,772 KB
testcase_13 AC 44 ms
59,400 KB
testcase_14 AC 44 ms
60,204 KB
testcase_15 AC 45 ms
60,148 KB
testcase_16 AC 45 ms
60,560 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

A, B = map(int, input().split())
ans = 0

for d in range(1, int(A**0.5)+1):
    if d%B==0:
        ans += 1
        
    if d!=A//d and (A//d)%B==0:
        ans += 1

print(ans)
0