結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー gorugo30gorugo30
提出日時 2021-01-22 22:09:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 963 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-06-08 15:09:36
合計ジャッジ時間 5,131 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
81,664 KB
testcase_01 WA -
testcase_02 AC 47 ms
61,312 KB
testcase_03 WA -
testcase_04 AC 48 ms
60,416 KB
testcase_05 AC 54 ms
61,184 KB
testcase_06 AC 178 ms
76,928 KB
testcase_07 AC 157 ms
76,260 KB
testcase_08 AC 223 ms
78,336 KB
testcase_09 AC 177 ms
77,056 KB
testcase_10 AC 190 ms
77,436 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b): # ax + by = gcd(a, b) となる(x, y, gcd(a, b))
    if a == 0:
        return (0, 1, b)
    (X, Y, G) = extgcd(b % a, a)
    return (Y - b // a * X, X, G)

T = int(input())
for case in range(T):
    P = list(map(int, input().split()))
    Y = P[3]
    P = P[:3]
    P.sort(reverse = True)
    ans = 0
    for i in range((Y // P[0]) + 1):
        R = Y - i * P[0]
        x, y, g = extgcd(P[1], P[2])
        if R % g != 0:
            continue
        K = P[1]
        H = P[2]
        K //= g
        H //= g
        R //= g
        x *= R
        y *= R
        if x >= 0 and y >= 0:
            ans += 1
            if x * y != 0:
                ans += min(H // x, K // y)
        else:
            if x * y == 0:
                if x + y < 0:
                    continue
                ans += 1
            else:
                ans += 1 + max(abs(x) // H, abs(y) // K) - min((abs(x) + H - 1) // H, (abs(y) + K - 1) // K)
    print(ans)
0