結果

問題 No.1200 お菓子配り-3
ユーザー anagohirameanagohirame
提出日時 2020-08-29 16:16:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 681 ms / 4,000 ms
コード長 791 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 199,952 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-20 22:57:48
合計ジャッジ時間 7,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 33 ms
5,248 KB
testcase_13 AC 33 ms
5,248 KB
testcase_14 AC 33 ms
5,248 KB
testcase_15 AC 34 ms
5,248 KB
testcase_16 AC 32 ms
5,248 KB
testcase_17 AC 114 ms
5,248 KB
testcase_18 AC 162 ms
5,248 KB
testcase_19 AC 39 ms
5,248 KB
testcase_20 AC 311 ms
5,248 KB
testcase_21 AC 312 ms
5,248 KB
testcase_22 AC 365 ms
5,248 KB
testcase_23 AC 311 ms
5,248 KB
testcase_24 AC 306 ms
5,248 KB
testcase_25 AC 309 ms
5,248 KB
testcase_26 AC 311 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 246 ms
5,248 KB
testcase_29 AC 681 ms
5,248 KB
testcase_30 AC 679 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int s; scanf("%d", &s);
	for (int z = 0; z < s; ++z) {
		int x, y; scanf("%d%d", &x, &y);
		if (x == y) {
			int ans = x-1;
			for (int i = 1; i*i <= x; ++i)
			{
				if (x%i != 0) continue;
				if (i > 2) ans++;
				if (i*i < x and x/i > 2) ans++;
			}
			printf("%d\n", ans);
			continue;
		}
		if (x < y) swap(x, y);
		int ans = 0;
		for (int i = 1; i*i <= x-y; ++i) {
			if ((x-y) % i != 0) continue;
			if ((x+y) % (i+2) == 0) {
				int p = (x-y) / i; int q = (x+y) / (i+2);
				if (p < q and p%2 == q%2) ans++;
			}
			if (i*i == x-y) continue;
			int j = (x-y)/i;
			if ((x+y) % (j+2) == 0) {
				int p = (x-y) / j; int q = (x+y) / (j+2);
				if (p < q and p%2 == q%2) ans++;
			}
		}
		printf("%d\n", ans);
	}
	return 0;
}
0