結果

問題 No.1200 お菓子配り-3
ユーザー shauuebbitshauuebbit
提出日時 2022-09-05 21:45:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,255 ms / 4,000 ms
コード長 1,152 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 201,272 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-30 23:55:59
合計ジャッジ時間 28,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 23 ms
6,944 KB
testcase_09 AC 21 ms
6,944 KB
testcase_10 AC 21 ms
6,940 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 194 ms
6,940 KB
testcase_13 AC 197 ms
6,948 KB
testcase_14 AC 200 ms
6,944 KB
testcase_15 AC 198 ms
6,944 KB
testcase_16 AC 197 ms
6,944 KB
testcase_17 AC 709 ms
6,944 KB
testcase_18 AC 1,017 ms
6,944 KB
testcase_19 AC 230 ms
6,944 KB
testcase_20 AC 1,961 ms
6,940 KB
testcase_21 AC 1,952 ms
6,944 KB
testcase_22 AC 2,317 ms
6,940 KB
testcase_23 AC 1,957 ms
6,944 KB
testcase_24 AC 1,964 ms
6,944 KB
testcase_25 AC 1,958 ms
6,944 KB
testcase_26 AC 1,960 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 3,255 ms
6,940 KB
testcase_29 AC 2,392 ms
6,944 KB
testcase_30 AC 2,369 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

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;

            for (long long x = 1; x * x <= X; x++) {
                if (X % x) continue;

                long long y = X / x;

                if (x > 2) ++ans;
                if (x != y && y > 2) ++ans;
            }
        } 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