結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | Mister |
提出日時 | 2020-08-04 04:47:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 1,357 bytes |
コンパイル時間 | 1,047 ms |
コンパイル使用メモリ | 93,548 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-09-14 00:19:18 |
合計ジャッジ時間 | 2,577 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 40 ms
6,940 KB |
testcase_11 | AC | 20 ms
6,940 KB |
testcase_12 | AC | 102 ms
6,940 KB |
testcase_13 | AC | 14 ms
6,944 KB |
testcase_14 | AC | 39 ms
6,944 KB |
testcase_15 | AC | 17 ms
6,944 KB |
testcase_16 | AC | 42 ms
6,940 KB |
testcase_17 | AC | 18 ms
6,940 KB |
testcase_18 | AC | 103 ms
6,940 KB |
testcase_19 | AC | 31 ms
6,944 KB |
testcase_20 | AC | 133 ms
9,728 KB |
ソースコード
#include <iostream> #include <numeric> #include <vector> #include <map> using lint = long long; void solve() { int n, m, k; char op; std::cin >> n >> m >> k >> op; if (op == '+') { std::map<int, lint> cnt; while (m--) { int x; std::cin >> x; x %= k; if (!cnt.count(x)) cnt[x] = 0; ++cnt[x]; } lint ans = 0; while (n--) { int x; std::cin >> x; x = (k - x % k) % k; if (cnt.count(x)) ans += cnt[x]; } std::cout << ans << "\n"; } else { std::map<lint, lint> acnt, bcnt; while (m--) { int x; std::cin >> x; x = std::gcd(x, k); if (!bcnt.count(x)) bcnt[x] = 0; ++bcnt[x]; } while (n--) { int x; std::cin >> x; x = std::gcd(x, k); if (!acnt.count(x)) acnt[x] = 0; ++acnt[x]; } lint ans = 0; for (auto [p1, c1] : acnt) { for (auto [p2, c2] : bcnt) { if (p1 * p2 % k == 0) ans += c1 * c2; } } std::cout << ans << "\n"; } } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }