結果

問題 No.1200 お菓子配り-3
ユーザー marroncastlemarroncastle
提出日時 2020-08-29 20:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,291 ms / 4,000 ms
コード長 985 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-11-20 23:07:12
合計ジャッジ時間 23,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 44 ms
57,600 KB
testcase_02 AC 45 ms
57,984 KB
testcase_03 AC 44 ms
57,472 KB
testcase_04 AC 44 ms
57,984 KB
testcase_05 AC 45 ms
57,472 KB
testcase_06 AC 45 ms
56,960 KB
testcase_07 AC 61 ms
58,496 KB
testcase_08 AC 61 ms
58,752 KB
testcase_09 AC 64 ms
58,624 KB
testcase_10 AC 60 ms
58,752 KB
testcase_11 AC 59 ms
58,240 KB
testcase_12 AC 212 ms
69,504 KB
testcase_13 AC 218 ms
70,912 KB
testcase_14 AC 216 ms
69,888 KB
testcase_15 AC 216 ms
69,120 KB
testcase_16 AC 214 ms
69,504 KB
testcase_17 AC 616 ms
76,672 KB
testcase_18 AC 845 ms
76,384 KB
testcase_19 AC 242 ms
70,784 KB
testcase_20 AC 1,547 ms
76,416 KB
testcase_21 AC 1,544 ms
76,416 KB
testcase_22 AC 1,798 ms
76,568 KB
testcase_23 AC 1,548 ms
76,884 KB
testcase_24 AC 1,521 ms
76,416 KB
testcase_25 AC 1,536 ms
76,656 KB
testcase_26 AC 1,537 ms
76,288 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 1,210 ms
75,956 KB
testcase_29 AC 3,266 ms
76,032 KB
testcase_30 AC 3,291 ms
76,208 KB
testcase_31 AC 43 ms
52,096 KB
testcase_32 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def divisor2(n):
  cd = []
  i = 1
  while i*i <= n:
    if n%i==0:
      cd.append(i)
      if i!=n//i:
        cd.append(n//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())
    q = abs(X-Y)
    p = X+Y
    if q==0:
      if p%2==0:
        ans[s] += p//2 - 1
        ans[s] += len(divisor2(p//2))-1
      if p%4==0:
        ans[s] -= 1
      continue
    divs = divisor(q)
    for div in divs:
      div2 = q//div
      if p%(div+2)==0:
        bpc = p//(div+2)
        bmc = div2
        if check(bpc,bmc):
          ans[s] += 1
      if p%(div2+2)==0:
        bpc = p//(div2+2)
        bmc = div
        if check(bpc,bmc):
          ans[s] += 1
  return ans
print(*solve(),sep='\n')
0