結果

問題 No.1200 お菓子配り-3
ユーザー t33ft33f
提出日時 2020-08-28 23:00:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 699 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 64,896 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 16:40:55
合計ジャッジ時間 16,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 14 ms
6,820 KB
testcase_08 AC 14 ms
6,816 KB
testcase_09 AC 14 ms
6,816 KB
testcase_10 AC 14 ms
6,816 KB
testcase_11 AC 14 ms
6,816 KB
testcase_12 AC 115 ms
6,820 KB
testcase_13 AC 117 ms
6,816 KB
testcase_14 AC 119 ms
6,816 KB
testcase_15 AC 118 ms
6,816 KB
testcase_16 AC 116 ms
6,820 KB
testcase_17 AC 419 ms
6,820 KB
testcase_18 AC 605 ms
6,820 KB
testcase_19 AC 140 ms
6,820 KB
testcase_20 AC 1,156 ms
6,816 KB
testcase_21 AC 1,161 ms
6,816 KB
testcase_22 AC 1,382 ms
6,820 KB
testcase_23 AC 1,156 ms
6,816 KB
testcase_24 AC 1,152 ms
6,820 KB
testcase_25 AC 1,151 ms
6,816 KB
testcase_26 AC 1,158 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1,900 ms
6,816 KB
testcase_29 AC 1,393 ms
6,816 KB
testcase_30 AC 1,396 ms
6,816 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

bool check(int x, int y, int d) {
    bool ret = (x + y) % d == 0 && (x - y) % (d - 2) == 0 &&
        (x + y) / d % 2 == (x - y) / (d - 2) % 2;
    if (ret) {
        int sum = (x + y) / d, diff = (x - y) / (d - 2);
        if (sum > diff) return true;
    }
    return false;
}

int main() {
    int s; cin >> s;
    while (s--) {
        int x, y; cin >> x >> y;
        if (x < y) swap(x, y);
        long long ans = 0;
        if (x == y) ans += x - 1;
        for (int d = 3; d * d <= x + y; d++) {
            if (check(x, y, d)) ans++;
            if (d * d < x + y && check(x, y, (x + y) / d)) ans++;
        }
        cout << ans << endl;
    }
}
0