結果
| 問題 |
No.2280 FizzBuzz Difference
|
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2023-04-21 22:43:58 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 826 bytes |
| コンパイル時間 | 4,374 ms |
| コンパイル使用メモリ | 252,304 KB |
| 最終ジャッジ日時 | 2025-02-12 12:16:46 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 6 |
ソースコード
#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;
}
沙耶花