結果

問題 No.1200 お菓子配り-3
ユーザー titiatitia
提出日時 2020-08-28 22:03:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 672 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 127,764 KB
最終ジャッジ日時 2024-11-14 14:55:18
合計ジャッジ時間 50,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,752 KB
testcase_01 AC 42 ms
127,764 KB
testcase_02 AC 50 ms
60,348 KB
testcase_03 AC 50 ms
60,324 KB
testcase_04 AC 50 ms
59,216 KB
testcase_05 AC 53 ms
61,552 KB
testcase_06 AC 48 ms
60,572 KB
testcase_07 AC 88 ms
61,184 KB
testcase_08 AC 94 ms
61,768 KB
testcase_09 AC 86 ms
61,692 KB
testcase_10 AC 85 ms
60,912 KB
testcase_11 AC 84 ms
61,580 KB
testcase_12 AC 444 ms
67,872 KB
testcase_13 AC 453 ms
69,044 KB
testcase_14 AC 453 ms
69,212 KB
testcase_15 AC 460 ms
69,572 KB
testcase_16 AC 449 ms
68,816 KB
testcase_17 AC 1,481 ms
71,596 KB
testcase_18 AC 2,090 ms
73,556 KB
testcase_19 AC 528 ms
68,700 KB
testcase_20 AC 3,966 ms
76,240 KB
testcase_21 AC 3,980 ms
75,096 KB
testcase_22 TLE -
testcase_23 AC 3,978 ms
74,636 KB
testcase_24 AC 3,904 ms
75,232 KB
testcase_25 AC 3,943 ms
74,720 KB
testcase_26 AC 3,922 ms
76,344 KB
testcase_27 AC 38 ms
53,148 KB
testcase_28 AC 3,129 ms
71,796 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd
from math import sqrt

T=int(input())
for tests in range(T):
    ANS=0
    
    X,Y=map(int,input().split())
    if X<Y:
        X,Y=Y,X
    T=abs(X-Y)
    xr=int(sqrt(T))+1

    for i in range(1,xr+1):
        if T%i==0 and (X+Y)%(i+2)==0:
            if (T//i)%2==((X+Y)//(i+2))%2 and abs((T//i))<((X+Y)//(i+2)):
                ANS+=1
                #print(i+1)
        k=T//i
        if k<=xr:
            continue
        if T%k==0 and (X+Y)%(k+2)==0:
            if (T//k)%2==((X+Y)//(k+2))%2 and abs((T//k))<((X+Y)//(k+2)):
                ANS+=1
                #print(k+1)
    print(ANS)
    
    
    
0