結果

問題 No.1200 お菓子配り-3
ユーザー SSRSSSRS
提出日時 2020-08-28 21:46:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 684 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 194,728 KB
最終ジャッジ日時 2025-01-13 17:00:16
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int S;
  cin >> S;
  for (int i = 0; i < S; i++){
    long long X, Y;
    cin >> X >> Y;
    if (X > Y){
      swap(X, Y);
    }
    int ans = 0;
    if (X == Y){
      ans += X - 1;
    }
    int D = Y - X;
    vector<long long> f;
    for (int j = 1; j * j <= D; j++){
      if (D % j == 0){
        f.push_back(j + 1);
        if (j * j < D){
          f.push_back(D / j + 1);
        }
      }
    }
    for (long long A : f){
      if ((A * Y - X) % (A * A - 1) == 0 && A * Y - X > 0){
        if ((A * X - Y) % (A * A - 1) == 0 && A * X - Y > 0){
          ans++;
        }
      }
    }
    cout << ans << endl;
  }
}
0