結果

問題 No.1200 お菓子配り-3
ユーザー titiatitia
提出日時 2020-08-28 22:06:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 119,796 KB
最終ジャッジ日時 2024-11-14 15:09:47
合計ジャッジ時間 50,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
119,796 KB
testcase_01 AC 41 ms
57,908 KB
testcase_02 AC 47 ms
59,304 KB
testcase_03 AC 48 ms
59,588 KB
testcase_04 AC 47 ms
60,348 KB
testcase_05 AC 50 ms
60,012 KB
testcase_06 AC 47 ms
59,300 KB
testcase_07 AC 86 ms
60,784 KB
testcase_08 AC 92 ms
62,844 KB
testcase_09 AC 85 ms
61,672 KB
testcase_10 AC 85 ms
61,240 KB
testcase_11 AC 83 ms
60,656 KB
testcase_12 AC 443 ms
66,628 KB
testcase_13 AC 452 ms
67,028 KB
testcase_14 AC 455 ms
68,928 KB
testcase_15 AC 462 ms
67,252 KB
testcase_16 AC 449 ms
67,852 KB
testcase_17 AC 1,480 ms
70,404 KB
testcase_18 AC 2,099 ms
72,332 KB
testcase_19 AC 525 ms
67,772 KB
testcase_20 AC 3,968 ms
74,180 KB
testcase_21 AC 3,976 ms
74,520 KB
testcase_22 TLE -
testcase_23 AC 3,983 ms
73,028 KB
testcase_24 AC 3,910 ms
73,528 KB
testcase_25 AC 3,951 ms
73,260 KB
testcase_26 AC 3,948 ms
74,296 KB
testcase_27 AC 38 ms
52,740 KB
testcase_28 AC 3,167 ms
67,956 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
import sys
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=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)
    sys.stdout.write(str(ANS)+"\n")
    
    
    
0