結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー ayaoniayaoni
提出日時 2021-01-24 00:25:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,101 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2023-08-30 10:37:03
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,176 KB
testcase_01 AC 77 ms
71,432 KB
testcase_02 AC 77 ms
71,504 KB
testcase_03 AC 77 ms
71,128 KB
testcase_04 AC 77 ms
71,272 KB
testcase_05 AC 76 ms
71,420 KB
testcase_06 AC 93 ms
76,456 KB
testcase_07 AC 92 ms
76,236 KB
testcase_08 AC 95 ms
76,228 KB
testcase_09 AC 95 ms
76,180 KB
testcase_10 AC 94 ms
76,116 KB
testcase_11 AC 648 ms
76,096 KB
testcase_12 AC 574 ms
76,044 KB
testcase_13 AC 704 ms
76,184 KB
testcase_14 AC 549 ms
76,028 KB
testcase_15 AC 580 ms
76,420 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def ext_gcd(a, b):  # a*x+b*y == gcd(a,b) たる gcd(a,b),x,y
    if b > 0:
        d,x,y = ext_gcd(b,a % b)
        return d,y,x-(a//b)*y
    return a,1,0


T = I()
for _ in range(T):
    N,K,H,Y = MI()

    # Nを最大としてよい
    M = max(N,K,H)
    if M == K:
        N,K = K,N
    elif M == H:
        N,H = H,N

    g,a,b = ext_gcd(K,H)
    K //= g
    H //= g
    ans = 0
    for i in range(Y//N+1):
        Z = Y-N*i
        if Z % g != 0:
            continue
        Z //= g

        # K*j+H*k == Z の自然数解の個数
        c = a*Z
        d = b*Z
        ans += max(1+d//K-(-c+H-1)//H,0)
    print(ans)
0