結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | rlangevin |
提出日時 | 2023-05-28 16:15:55 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 83,724 KB |
最終ジャッジ日時 | 2024-06-08 09:24:41 |
合計ジャッジ時間 | 4,929 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
81,024 KB |
testcase_01 | AC | 50 ms
60,416 KB |
testcase_02 | AC | 48 ms
60,800 KB |
testcase_03 | AC | 43 ms
59,520 KB |
testcase_04 | AC | 46 ms
60,416 KB |
testcase_05 | AC | 48 ms
61,312 KB |
testcase_06 | AC | 145 ms
75,824 KB |
testcase_07 | AC | 119 ms
76,032 KB |
testcase_08 | AC | 181 ms
76,716 KB |
testcase_09 | AC | 144 ms
76,416 KB |
testcase_10 | AC | 173 ms
77,056 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import sys input = sys.stdin.readline from math import gcd def extGCD(a, b): # ax + by = gcd(a, b)の解を求める if b == 0: return 1, 0 q = a // b r = a % b X, Y = extGCD(b, r) return Y, X - q * Y T = int(input()) mod = 10**9 + 7 for _ in range(T): N, K, H, Y = map(int, input().split()) A = [N, K, H] A.sort() g = gcd(A[0], A[1]) ans = 0 for i in range(Y//A[-1] + 1): C = Y - i * A[-1] if C < 0: break if C % g != 0: continue c = C // g n, k = A[0]//g, A[1]//g p, q = extGCD(n, k) ma = c * q // n mi = (-c * p + k - 1)//k ans += max(0, (ma - mi) + 1) ans %= mod print(ans)