結果

問題 No.1200 お菓子配り-3
ユーザー KudeKude
提出日時 2020-08-28 22:04:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 76,512 KB
最終ジャッジ日時 2024-11-14 14:56:37
合計ジャッジ時間 25,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,952 KB
testcase_01 AC 40 ms
59,056 KB
testcase_02 AC 46 ms
59,248 KB
testcase_03 AC 44 ms
58,704 KB
testcase_04 AC 45 ms
58,904 KB
testcase_05 AC 46 ms
59,084 KB
testcase_06 AC 45 ms
58,852 KB
testcase_07 AC 66 ms
61,548 KB
testcase_08 AC 70 ms
63,252 KB
testcase_09 AC 63 ms
61,244 KB
testcase_10 AC 67 ms
62,032 KB
testcase_11 AC 65 ms
61,432 KB
testcase_12 AC 228 ms
70,520 KB
testcase_13 AC 222 ms
69,352 KB
testcase_14 AC 222 ms
68,912 KB
testcase_15 AC 225 ms
70,220 KB
testcase_16 AC 220 ms
70,268 KB
testcase_17 AC 679 ms
76,028 KB
testcase_18 AC 920 ms
75,912 KB
testcase_19 AC 253 ms
71,068 KB
testcase_20 AC 1,762 ms
76,184 KB
testcase_21 AC 1,650 ms
75,756 KB
testcase_22 AC 1,940 ms
76,220 KB
testcase_23 AC 1,662 ms
76,512 KB
testcase_24 AC 1,733 ms
76,280 KB
testcase_25 AC 1,642 ms
75,824 KB
testcase_26 AC 1,746 ms
76,204 KB
testcase_27 AC 38 ms
52,136 KB
testcase_28 AC 1,319 ms
75,624 KB
testcase_29 AC 3,615 ms
76,356 KB
testcase_30 AC 3,581 ms
76,208 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x, y = map(int, input().split())
    if x < y:
        x, y = y, x
    p = x + y
    q = x - y
    d = 1
    ans = 0
    while d * d <= q:
        if q % d == 0:
            d2 = q // d
            for s, t in ([(d, d2), (d2, d)] if d != d2 else [(d, d2)]):
                s += 2
                if p % s == 0:
                    bc = p // s
                    if bc & 1 == t & 1 and bc > t:
                        ans += 1
        d += 1
    print(ans)
0