結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー finefine
提出日時 2020-02-14 22:02:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,510 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 188,256 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-04-27 19:39:08
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 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,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 31 ms
7,680 KB
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 100 ms
6,944 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 34 ms
6,940 KB
testcase_15 AC 18 ms
6,944 KB
testcase_16 AC 38 ms
8,832 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 100 ms
6,940 KB
testcase_19 AC 58 ms
6,944 KB
testcase_20 AC 80 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

template<typename T>
vector<T> divisor(T n) {
    vector<T> res;
    for (T i = 1; i * i <= n; i++) {
        if (n % i == 0) {
            res.emplace_back(i);
            if (i != n / i) res.emplace_back(n / i);
        }
    }
    return res;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, m;
    cin >> n >> m;
    ll K;
    cin >> K;
    char op;
    cin >> op;
    vector<ll> b(m);

    for (int i = 0; i < m; ++i) {
        cin >> b[i];
    }
    sort(b.begin(), b.end());

    vector<ll> a(n);

    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    sort(a.begin(), a.end());

    if (op == '+') {
        map<ll, int> cntb;
        for (int i = 0; i < m; ++i) {
            cntb[b[i] % K]++;
        }

        ll ans = 0;
        for (int i = 0; i < n; ++i) {
            ans += cntb[(K - a[i] % K) % K];
        }
        cout << ans << "\n";
    } else {
        map<ll, ll> cntb;
        for (int i = 0; i < m; ++i) {
            cntb[__gcd(b[i], K)]++;
        }

        map<ll, ll> cnta;
        for (int i = 0; i < n; ++i) {
            cnta[__gcd(a[i], K)]++;
        }

        vector<ll> ds = divisor(K);
        ll ans = 0;
        //cerr << ans << endl;
        for (ll x : ds) {
            for (ll y : ds) {
                if (x * y % K != 0) continue;
                ans += cnta[x] * cntb[y];
            }
        }
        cout << ans << "\n";
    }
    return 0;
}
0