結果
問題 | No.2417 Div Count |
ユーザー | Suzux |
提出日時 | 2023-08-12 13:47:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 627 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 52,684 KB |
最終ジャッジ日時 | 2024-11-19 16:12:25 |
合計ジャッジ時間 | 5,581 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,752 KB |
testcase_01 | AC | 25 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | AC | 27 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | AC | 29 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 26 ms
10,880 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 25 ms
10,752 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 27 ms
10,752 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 39 ms
11,520 KB |
testcase_27 | AC | 52 ms
12,032 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
n, k = list(map(int, input().split())) maxA = n-k primeSet = set() primeList = [True] * int(3 + maxA ** 0.5) primeList[1] = False primeList[2] = True primeSet.add(2) for i in range(4, len(primeList), 2): primeList[i] = False for i in range(3, len(primeList)): if primeList[i] == True: for j in range(i*2, len(primeList), i): primeList[i] = False primeSet.add(i) ans = 1 if k == 0: ans += 1 pFactor = [] while maxA > 1: for p in primeSet: if maxA % p == 0: pFactor.append(p) maxA //= p continue break ans += len(pFactor) print(ans)