結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | ゆにぽけ |
提出日時 | 2024-02-23 05:14:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,327 bytes |
コンパイル時間 | 1,288 ms |
コンパイル使用メモリ | 127,368 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-09-29 04:47:21 |
合計ジャッジ時間 | 10,859 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,640 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | TLE | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <string> #include <cctype> #include <cstring> #include <cstdlib> #include <cassert> #include <cmath> #include <ctime> #include <iomanip> #include <numeric> #include <stack> #include <queue> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <bitset> #include <random> #include <utility> #include <functional> using namespace std; long long gcd(long long a,long long b,long long &x,long long &y) { x = 1,y = 0; long long z = 0,w = 1; while(b) { long long q = a / b; a -= q * b; swap(a,b); x -= q * z; swap(x,z); y -= q * w; swap(y,w); } return a; } void Main() { long long a,b,c,Y; cin >> a >> b >> c >> Y; long long y,z; long long g = gcd(b,c,y,z); const int mod = (int)1e9 + 7; long long ans = 0; for(int i = 0;a * i <= Y;i++) { long long Z = Y - a * i; if(Z % g) { continue; } long long p = y * (Z / g),q = z * (Z / g); //b * p + c * q == Z q = -q; long long L = q >= 0 ? (q + b - 1) / b : -((-q) / b); long long U = p >= 0 ? p / c : -((-p + c - 1) / c); ans += max(0ll,U - L + 1); ans %= mod; } cout << ans << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; cin >> tt; while(tt--) Main(); }