結果

問題 No.2051 Divide
ユーザー ytftytft
提出日時 2022-08-23 13:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 58,808 KB
最終ジャッジ日時 2024-10-10 21:16:00
合計ジャッジ時間 2,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,052 KB
testcase_01 AC 39 ms
52,772 KB
testcase_02 AC 37 ms
53,276 KB
testcase_03 AC 37 ms
52,332 KB
testcase_04 AC 37 ms
52,636 KB
testcase_05 AC 38 ms
52,272 KB
testcase_06 AC 38 ms
52,028 KB
testcase_07 AC 38 ms
52,472 KB
testcase_08 AC 37 ms
51,944 KB
testcase_09 AC 38 ms
53,788 KB
testcase_10 AC 38 ms
53,012 KB
testcase_11 AC 37 ms
52,624 KB
testcase_12 AC 38 ms
52,068 KB
testcase_13 AC 37 ms
52,496 KB
testcase_14 AC 38 ms
52,184 KB
testcase_15 AC 38 ms
52,932 KB
testcase_16 AC 39 ms
53,132 KB
testcase_17 AC 45 ms
58,608 KB
testcase_18 AC 43 ms
58,676 KB
testcase_19 AC 42 ms
58,284 KB
testcase_20 AC 41 ms
58,808 KB
testcase_21 AC 41 ms
57,652 KB
testcase_22 AC 42 ms
57,620 KB
testcase_23 AC 43 ms
58,492 KB
testcase_24 AC 42 ms
57,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(x):
	test=1
	ans=0
	while test**2<x:
		ans+=2*(x%test==0)
		test+=1
	return ans+(test**2==x)
A,B=map(int,input().split())
print(divisors(A//B)*(A%B==0))
0