結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,220 KB
testcase_01 AC 40 ms
58,236 KB
testcase_02 AC 43 ms
59,184 KB
testcase_03 AC 43 ms
59,912 KB
testcase_04 AC 42 ms
59,616 KB
testcase_05 AC 44 ms
59,672 KB
testcase_06 AC 43 ms
59,412 KB
testcase_07 AC 68 ms
62,616 KB
testcase_08 AC 68 ms
62,216 KB
testcase_09 AC 64 ms
61,180 KB
testcase_10 AC 64 ms
60,812 KB
testcase_11 AC 64 ms
62,360 KB
testcase_12 AC 219 ms
70,840 KB
testcase_13 AC 220 ms
70,372 KB
testcase_14 AC 219 ms
70,140 KB
testcase_15 AC 221 ms
70,660 KB
testcase_16 AC 221 ms
69,828 KB
testcase_17 AC 636 ms
74,784 KB
testcase_18 AC 939 ms
76,456 KB
testcase_19 AC 250 ms
72,004 KB
testcase_20 AC 1,751 ms
76,396 KB
testcase_21 AC 1,628 ms
76,644 KB
testcase_22 AC 1,929 ms
76,160 KB
testcase_23 AC 1,649 ms
76,612 KB
testcase_24 AC 1,618 ms
75,896 KB
testcase_25 AC 1,616 ms
76,232 KB
testcase_26 AC 1,741 ms
76,116 KB
testcase_27 AC 36 ms
52,440 KB
testcase_28 AC 1,325 ms
76,292 KB
testcase_29 AC 3,544 ms
75,940 KB
testcase_30 AC 3,564 ms
76,240 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)]):
                bc = p // (s + 2)
                if p % (s + 2) == 0 and bc & 1 == t & 1 and bc > t:
                    #print(s, t, p, q)
                    ans += 1
        d += 1
    print(ans)
0