結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー ktr216ktr216
提出日時 2020-02-14 22:09:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 1,401 ms
コンパイル使用メモリ 177,908 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-04-27 19:42:32
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 49 ms
8,704 KB
testcase_11 AC 37 ms
6,940 KB
testcase_12 AC 142 ms
6,944 KB
testcase_13 AC 25 ms
6,940 KB
testcase_14 AC 50 ms
6,940 KB
testcase_15 AC 29 ms
6,940 KB
testcase_16 AC 67 ms
11,008 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 142 ms
6,944 KB
testcase_19 AC 49 ms
6,940 KB
testcase_20 AC 181 ms
23,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;

typedef long long ll;

ll gcd(ll x, ll y) {
    if (y == 0) return x;
    return gcd(y, x % y);
}

int main() {
    ll N, M, K;
    char op;
    cin >> N >> M >> K >> op;
    vector<ll> A(N), B(M);
    rep(i, M) {
        cin >> B[i];
    }
    rep(i, N) {
        cin >> A[i];
    }
    map<ll, ll> ma, mb;
    ll ans = 0;
    if (op == '+') {
        rep(i, N) ma[A[i] % K]++;
        rep(i, M) mb[B[i] % K]++;
        for (auto p : ma) {
            ans += p.second * mb[(K - p.first) % K];
        }
    } else {
        rep(i, N) ma[K / gcd(A[i], K)]++;
        rep(i, M) mb[gcd(B[i], K)]++;
        for (auto p : ma) {
            for (auto q : mb) {
                if (q.first % p.first == 0) ans += p.second * q.second;
            }
        }
    }
    cout << ans << endl;
}
0