結果
| 問題 | No.2417 Div Count |
| コンテスト | |
| ユーザー |
keisuke6
|
| 提出日時 | 2023-08-12 13:32:04 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 314 bytes |
| 記録 | |
| コンパイル時間 | 1,261 ms |
| コンパイル使用メモリ | 212,584 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-07-02 01:25:51 |
| 合計ジャッジ時間 | 2,605 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 40 WA * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
int a,b;
cin>>a>>b;
int ans = 0;
a -= b;
vector<int> S = {};
for(int i=1;i*i<=a;i++){
if(a%i == 0){
S.push_back(i);
if(i*i != a) S.push_back(a/i);
}
}
for(int x:S)if(x >= b) ans++;
cout<<ans<<endl;
}
keisuke6