結果
| 問題 | No.2280 FizzBuzz Difference |
| コンテスト | |
| ユーザー |
magsta
|
| 提出日時 | 2023-04-18 16:04:52 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,511 bytes |
| 記録 | |
| コンパイル時間 | 6,761 ms |
| コンパイル使用メモリ | 336,356 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-06-30 09:06:09 |
| 合計ジャッジ時間 | 7,525 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 7 |
ソースコード
#include <bits/stdc++.h>
#include "testlib.h"
using namespace std;
long long modinv(long long a, long long mod) {
long long b = mod, u = 1, v = 0;
while (b) {
long long t = a / b;
a -= t * b; swap(a, b);
u -= t * v; swap(u, v);
}
u %= mod;
if (u < 0) u += mod;
return u;
}
int main() {
registerValidation();
int T = inf.readInt(1, 10000, "T");
inf.readEoln();
for (int i = 0; i < T; i++) {
long long M, A, B, K;
M = inf.readLong(1LL, 1000000000000000000LL, "M");
inf.readSpace();
A = inf.readLong(1LL, min(M, 1000000000LL), "A");
inf.readSpace();
B = inf.readLong(A + 1, 1000000000LL, "B");
inf.readSpace();
K = inf.readLong(1LL, 1000000000LL, "K");
inf.readEoln();
if (gcd(A, B) != 1) cout << -1 << endl;
if (K < A) {
long long ans = (M / (A * B)) * 2;
long long a = (K * modinv(B, A)) % A;
long long b = A - a;
if (B * a + (M / (A * B)) * A * B <= M) ans++;
if (B * b + (M / (A * B)) * A * B + K <= M) ans++;
cout << ans << endl;
}
else if (K == A) {
long long ans = M / A + M / B - M / (A * B) - 1;
if ((M / A) * A >= (M / B) * B) ans -= 2 * (M / B - M / (A * B));
else ans -= 2 * (M / B - M / (A * B)) - 1;
cout << ans << endl;
}
else {
cout << 0 << endl;
}
}
inf.readEof();
}
magsta