結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー leaf_1415leaf_1415
提出日時 2021-01-22 22:47:19
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,511 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 84,336 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-27 21:02:17
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 8 ms
4,376 KB
testcase_07 AC 6 ms
4,380 KB
testcase_08 AC 7 ms
4,380 KB
testcase_09 AC 7 ms
4,376 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 542 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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;
}

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], x, y;
		ll d = extgcd(A, B, x, y), l = A*B/d;
		x = ((x%l)+l)%l;
		
		ll ans = 0;
		for(llint i = 0; ; i++){
			ll rem = g - i * a[2];
			if(rem < 0) break;
			
			//cout << i << " " << rem << endl;
			
			if(rem % d) continue;
			ll X = x * (rem / d) % l;
			if(rem >= A*X%l) ans += (rem - A*X%l) / l + 1, ans %= mod;
		}
		cout << ans << endl;
	}
	
	return 0;
}
0