結果
| 問題 | No.2280 FizzBuzz Difference |
| コンテスト | |
| ユーザー |
magsta
|
| 提出日時 | 2023-04-18 16:09:54 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 1,702 bytes |
| 記録 | |
| コンパイル時間 | 6,291 ms |
| コンパイル使用メモリ | 336,600 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-30 09:06:19 |
| 合計ジャッジ時間 | 7,238 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 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();
long long Gcd = gcd(A, B);
if (K % Gcd != 0) {
cout << 0 << endl;
continue;
}
else {
A /= Gcd;
B /= Gcd;
K /= Gcd;
M /= Gcd;
}
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