結果

問題 No.1200 お菓子配り-3
ユーザー marroncastlemarroncastle
提出日時 2020-08-29 19:17:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,916 KB
最終ジャッジ日時 2024-11-14 17:38:13
合計ジャッジ時間 23,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,140 KB
testcase_01 AC 41 ms
58,312 KB
testcase_02 AC 43 ms
58,648 KB
testcase_03 AC 43 ms
58,892 KB
testcase_04 AC 43 ms
58,140 KB
testcase_05 AC 43 ms
58,896 KB
testcase_06 AC 43 ms
58,024 KB
testcase_07 AC 59 ms
59,836 KB
testcase_08 AC 60 ms
59,496 KB
testcase_09 AC 59 ms
59,664 KB
testcase_10 AC 59 ms
59,664 KB
testcase_11 AC 57 ms
59,556 KB
testcase_12 AC 208 ms
69,668 KB
testcase_13 AC 212 ms
72,032 KB
testcase_14 AC 212 ms
70,432 KB
testcase_15 AC 215 ms
70,868 KB
testcase_16 AC 210 ms
69,920 KB
testcase_17 AC 613 ms
76,916 KB
testcase_18 AC 842 ms
76,328 KB
testcase_19 AC 242 ms
71,588 KB
testcase_20 AC 1,539 ms
76,772 KB
testcase_21 AC 1,542 ms
76,384 KB
testcase_22 AC 1,794 ms
76,780 KB
testcase_23 AC 1,542 ms
76,772 KB
testcase_24 AC 1,514 ms
76,704 KB
testcase_25 AC 1,526 ms
76,628 KB
testcase_26 AC 1,530 ms
76,892 KB
testcase_27 AC 38 ms
53,372 KB
testcase_28 AC 1,202 ms
76,416 KB
testcase_29 AC 3,261 ms
76,460 KB
testcase_30 AC 3,259 ms
76,480 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(n):
  cd = []
  i = 1
  while i*i <= n:
    if n%i==0:
      cd.append(i)
    i += 1
  return cd

def check(bpc,bmc):
  if (bpc+bmc)%2==1:
    return False
  if bpc-bmc<=0:
    return False
  return True

def solve():
  S = int(input())
  ans = [0]*S
  for s in range(S):
    X, Y = map(int, input().split())
    d = abs(X-Y)
    xy = X+Y
    divs = divisor(d)
    for div in divs:
      div2 = d//div
      if xy%(div+2)==0:
        bpc = xy//(div+2)
        bmc = div2
        if check(bpc,bmc):
          ans[s] += 1
      if xy%(div2+2)==0:
        bpc = xy//(div2+2)
        bmc = div
        if check(bpc,bmc):
          ans[s] += 1
  return ans
print(*solve(),sep='\n')
0