結果

問題 No.1200 お菓子配り-3
ユーザー shauuebbitshauuebbit
提出日時 2020-08-28 22:32:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 836 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 172,736 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 15:54:39
合計ジャッジ時間 12,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 9 ms
6,820 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 9 ms
6,820 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 73 ms
6,820 KB
testcase_13 AC 75 ms
6,820 KB
testcase_14 AC 75 ms
6,816 KB
testcase_15 AC 74 ms
6,816 KB
testcase_16 AC 74 ms
6,816 KB
testcase_17 AC 260 ms
6,820 KB
testcase_18 AC 377 ms
6,816 KB
testcase_19 AC 87 ms
6,816 KB
testcase_20 AC 718 ms
6,816 KB
testcase_21 AC 727 ms
6,816 KB
testcase_22 AC 865 ms
6,816 KB
testcase_23 AC 722 ms
6,820 KB
testcase_24 AC 723 ms
6,816 KB
testcase_25 AC 714 ms
6,816 KB
testcase_26 AC 721 ms
6,816 KB
testcase_27 WA -
testcase_28 AC 1,151 ms
6,816 KB
testcase_29 AC 854 ms
6,816 KB
testcase_30 AC 858 ms
6,820 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

const long long INF = 1e15;

using namespace std;

int main(){
  int S;
  cin >> S;
  
  while(S--){
    int X, Y;
    cin >> X >> Y;
    
    set<int> s;
    for(int i = 1; i * i <= X + Y; i++){
      if((X + Y) % i == 0){
        s.insert(i);
        s.insert((X + Y) / i);
      }
    }
    
    long long ans = 0;
    for(int d : s){
      int A = d - 1;
      if(A == 0) continue;
      
      if(A == 1){
        if(X == Y) ans += 2;
        continue;
      }
      
      int ok = (X + Y) / d, ng = 0;
      while(ok - ng > 1){
        int mid = (ok + ng) >> 1;
        
        if(X <= A * mid + (X + Y) / d - mid) ok = mid;
        else ng = mid;
      }
      
      if(A * ok + (X + Y) / d - ok == X && A * ((X + Y) / d - ok) + ok == Y) ++ans;
    }
    
    cout << ans << endl;
  }
  
  return 0;
}
0