結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー leaf_1415leaf_1415
提出日時 2021-01-22 23:38:18
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 2,084 bytes
コンパイル時間 1,013 ms
コンパイル使用メモリ 86,040 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-28 08:53:23
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18
#define mod 1000000007
using namespace std;
typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;
llint gcd(llint a, llint b)
{
if(b == 0) return a;
return gcd(b, a%b);
}
//ax+by = gcd(a, b)(x, y)gcd(a, b)
llint extgcd(llint a, llint b, llint &x, llint &y)
{
if(b == 0){
x = 1, y = 0;
return a;
}
llint xx, yy;
llint d = extgcd(b, a%b, xx, yy);
x = yy, y = xx-(a/b)*yy;
return d;
}
//a^{-1} (mod m)(gcd(a, m)!=1)-1
llint mod_inverse(llint a, llint m)
{
llint x, y;
if(extgcd(a, m, x, y) != 1) return -1;
return (x%m + m) % m;
}
//ax = b (mod m)x(mod m/gcd(a, m))(b%gcd(a, m)!=0)(0, -1)
P congruence(llint a, llint b, llint m)
{
llint d = gcd(a, m);
if(b % d) return make_pair(0, -1);
a /= d, b /= d, m /= d;
return make_pair(b * mod_inverse(a, m) % m, m);
}
ll T;
ll a[3], g;
int main(void)
{
ios::sync_with_stdio(0);
cin.tie(0);
cin >> T;
while(T--){
cin >> a[0] >> a[1] >> a[2] >> g;
sort(a, a+3);
ll A = a[0], B = a[1];
ll d = gcd(A, B), l = A*B/d;
ll inv = mod_inverse(A/d, B/d) % (B/d);
ll ans = 0;
for(llint i = 0; ; i++){
ll rem = g - i * a[2];
if(rem < 0) break;
if(rem % d) continue;
ll x = (rem/d) % (B/d) * inv % (B/d);
if(x >= 1e18/A) continue;
//cout << x << " " << m << endl;
if(rem-A*x%l >= 0){
ans += ((rem-A*x%l) / l + 1) % mod;
if(ans >= mod) ans -= mod;
}
}
cout << ans << endl;
}
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0