結果
問題 | No.2280 FizzBuzz Difference |
ユーザー | magsta |
提出日時 | 2023-04-18 16:04:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,511 bytes |
コンパイル時間 | 8,880 ms |
コンパイル使用メモリ | 330,944 KB |
実行使用メモリ | 5,848 KB |
最終ジャッジ日時 | 2024-10-13 15:11:52 |
合計ジャッジ時間 | 9,279 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#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(); }