結果

問題 No.1200 お菓子配り-3
ユーザー finefine
提出日時 2020-08-28 21:49:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,192 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 166,504 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 14:34:58
合計ジャッジ時間 27,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 21 ms
6,820 KB
testcase_08 AC 22 ms
6,820 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 21 ms
6,816 KB
testcase_11 AC 22 ms
6,816 KB
testcase_12 AC 189 ms
6,816 KB
testcase_13 AC 193 ms
6,820 KB
testcase_14 AC 195 ms
6,816 KB
testcase_15 AC 194 ms
6,816 KB
testcase_16 AC 191 ms
6,816 KB
testcase_17 AC 694 ms
6,820 KB
testcase_18 AC 996 ms
6,816 KB
testcase_19 AC 231 ms
6,820 KB
testcase_20 AC 1,910 ms
6,816 KB
testcase_21 AC 1,968 ms
6,816 KB
testcase_22 AC 2,272 ms
6,816 KB
testcase_23 AC 1,901 ms
6,820 KB
testcase_24 AC 2,053 ms
6,820 KB
testcase_25 AC 1,903 ms
6,816 KB
testcase_26 AC 1,909 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 3,175 ms
6,816 KB
testcase_29 AC 2,323 ms
6,820 KB
testcase_30 AC 2,322 ms
6,816 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

ll solve(ll x, ll y) {    
    // x = ab+c, y = ac+b
    // x + y = (a + 1)(b + c)
    ll sum = x + y;
    ll res = 0;
    for (ll i = 2; i * i <= sum; i++) {
        if (sum % i != 0) continue;
        ll j = sum / i;

        // a + 1 == i, b + c == j
        // (i - 1) c + (j - c) == y
        // (i - 2) c + j == y
        // c == (y - j) / (i - 2)
        if (i > 2 && y > j && (y - j) % (i - 2) == 0) {
            ll a = i - 1;
            ll c = (y - j) / (i - 2);
            ll b = j - c;
            res += (a > 0 && b > 0 && c > 0);
        }

        // b + c == i, a + 1 == j
        // c == (y - i) / (j - 2)
        if (j > 2 && y > i && (y - i) % (j - 2) == 0) {
            ll a = j - 1;
            ll c = (y - i) / (j - 2);
            ll b = i - c;
            res += (a > 0 && b > 0 && c > 0);            
        }
    }
    return res;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin >> n;

    for (int i = 0; i < n; i++) {
        ll x, y;
        cin >> x >> y;
        cout << solve(x, y) << newl;
    }

    return 0;
}
0