結果

問題 No.1200 お菓子配り-3
ユーザー t33ft33f
提出日時 2020-08-29 21:04:51
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3,310 ms / 4,000 ms
コード長 728 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 64,644 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-20 23:06:47
合計ジャッジ時間 27,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 4 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 23 ms
6,820 KB
testcase_08 AC 24 ms
6,816 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 22 ms
6,816 KB
testcase_11 AC 23 ms
6,816 KB
testcase_12 AC 196 ms
6,816 KB
testcase_13 AC 202 ms
6,816 KB
testcase_14 AC 202 ms
6,820 KB
testcase_15 AC 204 ms
6,816 KB
testcase_16 AC 203 ms
6,816 KB
testcase_17 AC 725 ms
6,816 KB
testcase_18 AC 1,041 ms
6,816 KB
testcase_19 AC 241 ms
6,820 KB
testcase_20 AC 2,003 ms
6,816 KB
testcase_21 AC 2,003 ms
6,816 KB
testcase_22 AC 2,376 ms
6,820 KB
testcase_23 AC 2,003 ms
6,820 KB
testcase_24 AC 2,007 ms
6,816 KB
testcase_25 AC 1,995 ms
6,820 KB
testcase_26 AC 2,000 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 3,310 ms
6,816 KB
testcase_29 AC 2,418 ms
6,816 KB
testcase_30 AC 2,416 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

bool check(int x, int y, int d) {
    if (d < 3) return false;
    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 = 1; 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