結果

問題 No.2280 FizzBuzz Difference
ユーザー vwxyzvwxyz
提出日時 2023-09-12 05:47:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-29 18:54:25
合計ジャッジ時間 2,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 126 ms
10,880 KB
testcase_02 AC 160 ms
10,880 KB
testcase_03 AC 70 ms
10,880 KB
testcase_04 AC 176 ms
10,880 KB
testcase_05 AC 152 ms
10,880 KB
testcase_06 AC 144 ms
10,752 KB
testcase_07 AC 147 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import math

def Extended_Euclid(n,m):
    stack=[]
    while m:
        stack.append((n,m))
        n,m=m,n%m
    if n>=0:
        x,y=1,0
    else:
        x,y=-1,0
    for i in range(len(stack)-1,-1,-1):
        n,m=stack[i]
        x,y=y,x-(n//m)*y
    return x,y

T=int(readline())
for t in range(T):
    M,A,B,K=map(int,readline().split())
    if A<K:
        ans=0
    elif A==K:
        g=math.gcd(A,B)
        ans=max(M//A-1,0)-(M//B-M//(A*B//g))
        if B%A:
            a=M-M%A
            b=M-M%B
            if b%A==0:
                b-=B
            if a<b:
                ans+=1
    else:
        X,Y=Extended_Euclid(A,B)
        g=math.gcd(A,B)
        a=A//g
        b=B//g
        ans=0
        for x,y in ((X,-Y),(-X,Y)):
            if K%g==0:
                x*=K//g
                y*=K//g
                l=max((1-x*A+b*A-1)//(b*A),(1-y*B+a*B-1)//(a*B))
                r=min((M-x*A)//(b*A),(M-y*B)//(a*B))+1
                ans+=max(r-l,0)
        #1<=(x+b*i)*A<=M
        #1<=(y+a*i)*B<=M
    print(ans)
0