結果

問題 No.1203 お菓子ゲーム
ユーザー ChanyuhChanyuh
提出日時 2020-08-29 11:05:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 78,076 KB
最終ジャッジ日時 2024-11-14 05:27:31
合計ジャッジ時間 19,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
77,120 KB
testcase_01 AC 356 ms
76,644 KB
testcase_02 AC 209 ms
77,420 KB
testcase_03 AC 431 ms
77,280 KB
testcase_04 AC 175 ms
76,420 KB
testcase_05 AC 486 ms
77,400 KB
testcase_06 AC 317 ms
76,540 KB
testcase_07 AC 441 ms
77,208 KB
testcase_08 AC 333 ms
77,368 KB
testcase_09 AC 300 ms
77,400 KB
testcase_10 AC 506 ms
77,912 KB
testcase_11 AC 188 ms
77,124 KB
testcase_12 AC 304 ms
76,620 KB
testcase_13 AC 283 ms
77,880 KB
testcase_14 AC 298 ms
76,660 KB
testcase_15 AC 520 ms
77,636 KB
testcase_16 AC 235 ms
76,972 KB
testcase_17 AC 384 ms
76,344 KB
testcase_18 AC 43 ms
59,620 KB
testcase_19 AC 123 ms
76,480 KB
testcase_20 AC 37 ms
52,684 KB
testcase_21 AC 37 ms
53,496 KB
testcase_22 AC 36 ms
53,432 KB
testcase_23 AC 36 ms
52,312 KB
testcase_24 AC 36 ms
52,872 KB
testcase_25 AC 37 ms
52,204 KB
testcase_26 AC 39 ms
52,364 KB
testcase_27 AC 37 ms
52,180 KB
testcase_28 AC 37 ms
52,468 KB
testcase_29 AC 35 ms
53,196 KB
testcase_30 AC 534 ms
78,020 KB
testcase_31 AC 556 ms
77,648 KB
testcase_32 AC 509 ms
76,896 KB
testcase_33 AC 524 ms
77,392 KB
testcase_34 AC 567 ms
77,784 KB
testcase_35 AC 570 ms
77,808 KB
testcase_36 AC 539 ms
77,380 KB
testcase_37 AC 495 ms
76,496 KB
testcase_38 AC 529 ms
77,136 KB
testcase_39 AC 545 ms
77,896 KB
testcase_40 AC 608 ms
78,076 KB
testcase_41 AC 515 ms
76,512 KB
testcase_42 AC 541 ms
77,092 KB
testcase_43 AC 591 ms
77,540 KB
testcase_44 AC 561 ms
77,052 KB
testcase_45 AC 570 ms
76,756 KB
testcase_46 AC 532 ms
76,920 KB
testcase_47 AC 603 ms
77,596 KB
testcase_48 AC 558 ms
76,860 KB
testcase_49 AC 585 ms
77,744 KB
testcase_50 AC 40 ms
58,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(x):
  res=[]
  i=1
  while i*i<=x:
    if x%i==0:
      res.append(i)
      if i*i!=x:
        res.append(x//i)
    i+=1
  return res
        
n=int(input())
for i in range(n):
  ans=0
  x,y=map(int,input().split())
  #print(x,y)
  Dy=divisor_list(y)
  for d in Dy:
    if d%2==0:
      continue
    b=(d+1)//2
    if 2*b*(b-1)*y%((2*b-1)*x)!=0:
      continue
    A=2*b*(b-1)*y//((2*b-1)*x)
    #print(A,2*b-1)
    if A<=0 or A>100000000:  continue
    if A<=2*b-1: continue
    ans+=1
  for d in Dy:
    if d%2==0:
      continue
    a=(d+1)//2
    if 2*a*(a-1)*y%((2*a-1)*(y-x))!=0:
      continue
    B=2*a*(a-1)*y//((2*a-1)*(y-x))
    #print(2*a-1,B)
    if B<=0 or B>100000000: continue
    if B<=2*a-1: continue
    ans+=1
  if y>2*x:
    ans+=100000000//y
  if y>2*(y-x):
    ans+=100000000//y
  print(ans)
    
    
  
0