結果

問題 No.2417 Div Count
ユーザー Seed57_cashSeed57_cash
提出日時 2023-06-22 08:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 59,064 KB
最終ジャッジ日時 2024-09-13 05:20:06
合計ジャッジ時間 3,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,376 KB
testcase_01 AC 40 ms
52,968 KB
testcase_02 AC 39 ms
52,928 KB
testcase_03 AC 39 ms
51,832 KB
testcase_04 AC 39 ms
53,672 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
53,064 KB
testcase_07 AC 38 ms
52,248 KB
testcase_08 AC 39 ms
53,556 KB
testcase_09 AC 39 ms
52,368 KB
testcase_10 AC 38 ms
51,992 KB
testcase_11 AC 39 ms
51,948 KB
testcase_12 AC 38 ms
52,280 KB
testcase_13 AC 39 ms
52,200 KB
testcase_14 AC 39 ms
53,344 KB
testcase_15 AC 39 ms
53,192 KB
testcase_16 AC 39 ms
51,700 KB
testcase_17 AC 39 ms
51,700 KB
testcase_18 AC 39 ms
53,480 KB
testcase_19 AC 39 ms
52,976 KB
testcase_20 AC 43 ms
58,048 KB
testcase_21 AC 39 ms
52,208 KB
testcase_22 AC 40 ms
52,484 KB
testcase_23 AC 42 ms
58,132 KB
testcase_24 AC 42 ms
57,592 KB
testcase_25 AC 42 ms
58,860 KB
testcase_26 AC 42 ms
58,392 KB
testcase_27 AC 43 ms
58,936 KB
testcase_28 AC 42 ms
58,740 KB
testcase_29 AC 43 ms
58,108 KB
testcase_30 AC 42 ms
58,576 KB
testcase_31 AC 42 ms
58,084 KB
testcase_32 AC 46 ms
57,940 KB
testcase_33 AC 44 ms
58,724 KB
testcase_34 AC 43 ms
58,212 KB
testcase_35 AC 48 ms
58,064 KB
testcase_36 AC 46 ms
57,584 KB
testcase_37 AC 45 ms
57,784 KB
testcase_38 AC 55 ms
57,992 KB
testcase_39 AC 47 ms
59,064 KB
testcase_40 AC 45 ms
58,680 KB
testcase_41 AC 44 ms
58,040 KB
testcase_42 AC 39 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N // A = Q とすると、N = A * Q + K
# なので(N - K)の約数かつKより大きいものを求める

N, K = map(int, input().split())
M = N - K

res = 0
for i in range(1, M + 1):
	if i * i > M:
		# 約数はペアなのでsqrt(M)まで探せばいい
		break
	if M % i == 0:
		if i > K:
			res += 1
		if M // i > K and i * i < M:
			# i * i == M のときに2重カウントしないように
			res += 1
	
print(res)
0