結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | rlangevin |
提出日時 | 2023-05-28 16:15:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 947 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 81,536 KB |
最終ジャッジ日時 | 2024-06-08 09:24:08 |
合計ジャッジ時間 | 5,327 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
81,152 KB |
testcase_01 | AC | 48 ms
59,904 KB |
testcase_02 | AC | 51 ms
61,184 KB |
testcase_03 | AC | 47 ms
58,880 KB |
testcase_04 | AC | 49 ms
60,416 KB |
testcase_05 | AC | 50 ms
61,440 KB |
testcase_06 | AC | 144 ms
76,032 KB |
testcase_07 | AC | 122 ms
76,288 KB |
testcase_08 | AC | 177 ms
76,672 KB |
testcase_09 | AC | 148 ms
76,160 KB |
testcase_10 | AC | 177 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(10 ** 6 + 5): 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("test", i, p, q, C, g) print(ans)