結果

問題 No.1200 お菓子配り-3
ユーザー titiatitia
提出日時 2024-08-13 03:05:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-08-13 03:06:21
合計ジャッジ時間 23,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
58,240 KB
testcase_02 AC 41 ms
58,496 KB
testcase_03 AC 43 ms
58,624 KB
testcase_04 AC 43 ms
59,008 KB
testcase_05 AC 43 ms
59,012 KB
testcase_06 AC 43 ms
58,240 KB
testcase_07 AC 56 ms
59,392 KB
testcase_08 AC 63 ms
60,416 KB
testcase_09 AC 57 ms
59,964 KB
testcase_10 AC 56 ms
59,264 KB
testcase_11 AC 57 ms
60,416 KB
testcase_12 AC 204 ms
66,176 KB
testcase_13 AC 197 ms
65,664 KB
testcase_14 AC 196 ms
66,304 KB
testcase_15 AC 199 ms
65,920 KB
testcase_16 AC 197 ms
66,176 KB
testcase_17 AC 590 ms
68,608 KB
testcase_18 AC 803 ms
69,888 KB
testcase_19 AC 233 ms
65,920 KB
testcase_20 AC 1,531 ms
71,296 KB
testcase_21 AC 1,534 ms
70,784 KB
testcase_22 AC 1,800 ms
71,936 KB
testcase_23 AC 1,381 ms
70,784 KB
testcase_24 AC 1,490 ms
70,784 KB
testcase_25 AC 1,493 ms
70,912 KB
testcase_26 AC 1,492 ms
71,296 KB
testcase_27 AC 37 ms
52,608 KB
testcase_28 AC 1,223 ms
67,328 KB
testcase_29 AC 3,358 ms
66,816 KB
testcase_30 AC 3,350 ms
66,432 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
import sys

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(T**(1/2))+1

    for i in range(1,xr+1):
        if T%i==0:
            if (X+Y)%(i+2)==0:
                if (T//i)%2==((X+Y)//(i+2))%2 and abs(T//i)<(X+Y)//(i+2):
                    ANS+=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
                
    sys.stdout.write(str(ANS)+"\n")
    
0