結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-23 03:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 706 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-06-09 09:00:51
合計ジャッジ時間 4,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,136 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 41 ms
52,608 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 61 ms
60,800 KB
testcase_07 AC 58 ms
60,672 KB
testcase_08 AC 61 ms
61,696 KB
testcase_09 AC 61 ms
61,824 KB
testcase_10 AC 61 ms
61,440 KB
testcase_11 AC 617 ms
60,800 KB
testcase_12 AC 566 ms
60,928 KB
testcase_13 AC 706 ms
62,208 KB
testcase_14 AC 513 ms
61,184 KB
testcase_15 AC 548 ms
61,568 KB
testcase_16 AC 404 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline

t = int(input())
mod = 10**9+7

def extgcd(a, b):
    # ax+by = gcd(x, y)の整数解を求める
    # x, y, gcd(a, b)を返す
    if b == 0:
        return 1, 0, a
    q, r = divmod(a, b)
    x, y, d = extgcd(b, r)
    s, t = y, x-q*y
    return s, t, d

import math

for _ in range(t):
    n, k, h, y = map(int, input().split())
    n, k, h = sorted([n, k, h], reverse=True)
    g = math.gcd(k, h)
    a, b = k//g, h//g
    x0, y0, _ = extgcd(a, b)
    ans = 0
    for i in range(y//n+1):
        c = y-n*i
        if c%g:
            continue
        c = c//g
        ans += (c*y0)//a-(-c*x0+b-1)//b+1
        ans %= mod
    print(ans)
0