結果

問題 No.1200 お菓子配り-3
ユーザー chocoruskchocorusk
提出日時 2020-08-28 21:40:19
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,171 bytes
コンパイル時間 6,448 ms
コンパイル使用メモリ 154,604 KB
最終ジャッジ日時 2025-01-13 16:51:39
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
ll calc(ll a, ll s, ll x, ll y){
    if(a==0) return 0;
    if(a==1){
        if(x==y) return s-1;
      else return 0;
    }
    if(x<=s) return 0;
    if((x-s)%(a-1)==0 && (x-s)/(a-1)<s) return 1;
    else return 0;
}
ll solve(ll x, ll y){
    ll ans=0;
    for(ll i=1; i*i<=x+y; i++){
        if((x+y)%i!=0) continue;
        ll z=(x+y)/i;
        if(i>1){
            ans+=calc(i-1, z, x, y);
        }
        if(i*i<x+y){
            ans+=calc(z-1, i, x, y);
        }
    }
    return ans;
}
int main()
{
    int s; cin>>s;
    while(s--){
        ll x, y; cin>>x>>y;
        cout<<solve(x, y)<<endl;
    }
    return 0;
}

0