結果
| 問題 | No.2417 Div Count |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-14 17:57:24 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 294 bytes |
| コンパイル時間 | 2,094 ms |
| コンパイル使用メモリ | 196,416 KB |
| 最終ジャッジ日時 | 2025-02-16 08:05:34 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 4 WA * 37 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
long long N, K;
cin >> N >> K;
N -= K;
set<long long> s;
for (long long i = 1; i * i <= N; i++){
if (N % i == 0){
s.insert(i);
s.insert(N / i);
}
}
int ans = s.size();
if (K != 0){
ans--;
}
cout << ans << '\n';
}