結果

問題 No.1203 お菓子ゲーム
ユーザー ChanyuhChanyuh
提出日時 2020-08-29 10:58:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 799 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,200 KB
最終ジャッジ日時 2024-11-14 05:27:07
合計ジャッジ時間 20,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
77,040 KB
testcase_01 AC 364 ms
76,748 KB
testcase_02 AC 208 ms
77,484 KB
testcase_03 WA -
testcase_04 AC 178 ms
76,736 KB
testcase_05 AC 494 ms
77,380 KB
testcase_06 AC 328 ms
76,852 KB
testcase_07 AC 454 ms
76,920 KB
testcase_08 AC 328 ms
77,704 KB
testcase_09 AC 303 ms
77,672 KB
testcase_10 AC 493 ms
77,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 285 ms
77,832 KB
testcase_14 AC 303 ms
77,144 KB
testcase_15 WA -
testcase_16 AC 242 ms
76,756 KB
testcase_17 WA -
testcase_18 AC 44 ms
59,312 KB
testcase_19 AC 121 ms
76,488 KB
testcase_20 AC 37 ms
52,068 KB
testcase_21 AC 37 ms
52,604 KB
testcase_22 AC 37 ms
52,724 KB
testcase_23 AC 37 ms
53,144 KB
testcase_24 AC 36 ms
52,736 KB
testcase_25 AC 37 ms
51,944 KB
testcase_26 AC 36 ms
52,956 KB
testcase_27 AC 37 ms
53,648 KB
testcase_28 AC 37 ms
54,344 KB
testcase_29 AC 36 ms
53,376 KB
testcase_30 AC 534 ms
76,516 KB
testcase_31 AC 570 ms
77,908 KB
testcase_32 AC 519 ms
76,840 KB
testcase_33 AC 539 ms
77,604 KB
testcase_34 WA -
testcase_35 AC 550 ms
77,904 KB
testcase_36 AC 551 ms
77,624 KB
testcase_37 AC 511 ms
76,848 KB
testcase_38 AC 552 ms
77,732 KB
testcase_39 WA -
testcase_40 AC 623 ms
78,200 KB
testcase_41 AC 527 ms
76,860 KB
testcase_42 AC 558 ms
77,328 KB
testcase_43 AC 597 ms
78,116 KB
testcase_44 AC 570 ms
77,460 KB
testcase_45 AC 568 ms
77,340 KB
testcase_46 AC 545 ms
76,960 KB
testcase_47 WA -
testcase_48 AC 595 ms
77,956 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    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))
    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