結果

問題 No.1200 お菓子配り-3
ユーザー shauuebbitshauuebbit
提出日時 2022-09-05 21:39:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 200,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 23:48:58
合計ジャッジ時間 25,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 21 ms
6,944 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 20 ms
6,944 KB
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 179 ms
6,944 KB
testcase_13 AC 180 ms
6,944 KB
testcase_14 AC 183 ms
6,944 KB
testcase_15 AC 177 ms
6,944 KB
testcase_16 AC 176 ms
6,944 KB
testcase_17 AC 660 ms
6,944 KB
testcase_18 AC 915 ms
6,940 KB
testcase_19 AC 213 ms
6,940 KB
testcase_20 AC 1,753 ms
6,940 KB
testcase_21 AC 1,766 ms
6,940 KB
testcase_22 AC 2,061 ms
6,944 KB
testcase_23 AC 1,769 ms
6,944 KB
testcase_24 AC 1,766 ms
6,944 KB
testcase_25 AC 1,749 ms
6,944 KB
testcase_26 AC 1,744 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2,909 ms
6,940 KB
testcase_29 AC 2,201 ms
6,944 KB
testcase_30 AC 2,144 ms
6,944 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int S;
    scanf("%d", &S);

    while (S--) {
        long long X, Y;
        scanf("%lld%lld", &X, &Y);

        if (X < Y) swap(X, Y);

        long long ans = 0;

        if (X == Y) {
            ans += X - 1;
        } else {
            for (long long x = 2; x * x <= X + Y; x++) {
                if ((X + Y) % x) continue;

                long long y = (X + Y) / x;

                if (x > 2 && (X - Y) % (x - 2) == 0) {
                    long long b = (X + Y) / x, c = (X - Y) / (x - 2);
                    if (b > c && b % 2 == c % 2) ++ans;
                }

                if (x != y && y > 2 && (X - Y) % (y - 2) == 0) {
                    long long b = (X + Y) / y, c = (X - Y) / (y - 2);
                    if (b > c && b % 2 == c % 2) ++ans;
                }
            }
        }

        printf("%lld\n", ans);
    }

    return 0;
}
0