結果

問題 No.2417 Div Count
ユーザー やありやあり
提出日時 2023-08-12 14:12:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-19 17:51:41
合計ジャッジ時間 30,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 30 ms
21,248 KB
testcase_02 WA -
testcase_03 AC 30 ms
21,376 KB
testcase_04 AC 30 ms
16,000 KB
testcase_05 AC 30 ms
20,992 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 31 ms
16,128 KB
testcase_12 AC 32 ms
16,000 KB
testcase_13 AC 31 ms
21,248 KB
testcase_14 AC 41 ms
15,872 KB
testcase_15 WA -
testcase_16 AC 34 ms
16,000 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 532 ms
10,752 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 569 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 147 ms
10,624 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 WA -
testcase_35 TLE -
testcase_36 WA -
testcase_37 WA -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 29 ms
21,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
ans = 1
N ,  K = map(int,input().split())
#N-KのK以上の約数
N = N - K
for i in range(K+1,N):
  if N % i == 0 :
    ans = ans + 1
print(ans)
0