結果

問題 No.2280 FizzBuzz Difference
ユーザー 沙耶花沙耶花
提出日時 2023-04-21 22:43:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 4,423 ms
コンパイル使用メモリ 254,260 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 08:49:57
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 34 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 8000000000000000001



int main(){
	
	int _t;
	cin>>_t;
	rep(_,_t){
		long long M,A,B,K;
		cin>>M>>A>>B>>K;
		long long ans = 0;
		if(A<K){
		}
		else if(A==K){
			ans = (M/A)-1 - ((M/A)*A/B);
			ans += M / lcm(A,B);
		}
		else{
			rep(__,2){
				auto ret = crt({0,K},{A,B});
				if(ret.second!=0){
					long long left = 0,right = Inf64;
					long long b = ret.second;
					long long a = ret.first;
					left = max({left,(A-a+b-1)/b,(B+K-a+b-1)/b});
					right = min({right,(M-a)/b,(M-a+K)/b});
					ans += max(0LL,right-left+1);
				}
				swap(A,B);
			}
		}
		cout<<ans<<endl;
	}
	
	return 0;
}
0