結果

問題 No.2417 Div Count
ユーザー taro2023taro2023
提出日時 2023-08-12 15:20:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2024-11-20 01:24:04
合計ジャッジ時間 52,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,316 KB
testcase_01 AC 26 ms
21,120 KB
testcase_02 AC 26 ms
17,444 KB
testcase_03 AC 25 ms
21,120 KB
testcase_04 AC 24 ms
17,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int, input().split())
c=[]
for i in range(1, ((a-b)+2)//2):
    if (a-b) % i == 0:
        c.append(i)
if b==0:
    print(len(c)+1)
else:
    print(len(c))
0