結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-13 20:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,798 ms / 2,000 ms
コード長 1,489 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,980 KB
実行使用メモリ 76,108 KB
最終ジャッジ日時 2024-05-04 10:15:38
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,384 KB
testcase_01 AC 35 ms
52,784 KB
testcase_02 AC 34 ms
52,736 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 33 ms
52,736 KB
testcase_05 AC 33 ms
52,608 KB
testcase_06 AC 69 ms
73,344 KB
testcase_07 AC 67 ms
74,240 KB
testcase_08 AC 71 ms
70,912 KB
testcase_09 AC 70 ms
72,704 KB
testcase_10 AC 63 ms
69,888 KB
testcase_11 AC 1,638 ms
75,520 KB
testcase_12 AC 1,529 ms
76,032 KB
testcase_13 AC 1,798 ms
76,108 KB
testcase_14 AC 1,206 ms
75,520 KB
testcase_15 AC 1,499 ms
75,648 KB
testcase_16 AC 759 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
def gcd(a,b):
  while b:a,b=b,a%b
  return a

def xgcd(a, b):
    x0, y0, x1,y1=1,0,0,1
    while b != 0:
        q, a, b = a // b, b, a % b
        x0, x1 = x1, x0 - q * x1
        y0, y1 = y1, y0 - q * y1
    return a, x0, y0
memo={}
def modinv(a, m):
    if (a,m) in memo:return memo[(a,m)]
    g, x, y = xgcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        memo[(a,m)]=x%m
        return x % m
def main1(n,k,h,y):
  ary=[n,k,h]
  ary.sort()
  a,b,c=ary
  g=gcd(a,b)
  na,nb=a//g,b//g
  now=0
  ans=0
  while now<=y:
    yy=y-now
    now+=c
    if yy%g!=0:continue
    yy=yy//g
    if yy==0:
      ans+=1
      continue
    if yy<na:continue
    if yy<nb:
      if yy%na==0:
        ans+=1
      continue
    # yy-nb*iがmod naで0になるiの個数
    # yy%na=nb*i%na となるiの個数
    # 0<=i<=yy//nb
    # yy%na=nb*i%na となる最小のiを求める。あとは周期naで循環する。
    u=yy%na
    v=nb%na
    # u=v*i
    # u*v^(-1)=i
    if u==0:
      i=0
    elif u==v:
      i=1
    else:
      i=u*modinv(v,na)
      i%=na
    #print((na,nb),yy,i)
    if yy-nb*i<0:continue
    w=yy//nb
    if i<=w:
      ans+=(w-i)//na+1
      ans%=mod
      #print((u,v,w))
      #print((na,nb,yy),i,w,(w-i)//na+1)
  return ans
import sys
input=sys.stdin.readline
if __name__=='__main__':
  t=int(input())
  cases=[list(map(int,input().split())) for _ in range(t)]
  for n,k,h,y in cases:
    print(main1(n,k,h,y))
0