結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー erbowlerbowl
提出日時 2020-03-30 21:39:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,041 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 177,332 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-06-23 04:01:48
合計ジャッジ時間 7,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 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 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 33 ms
7,680 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 1,955 ms
6,940 KB
testcase_13 AC 12 ms
6,940 KB
testcase_14 AC 28 ms
6,940 KB
testcase_15 AC 15 ms
6,940 KB
testcase_16 AC 41 ms
8,832 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 TLE -
testcase_19 AC 459 ms
6,940 KB
testcase_20 AC 112 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
#include <bits/stdc++.h>
using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll n,m,k;
    std::cin >> n>>m>>k;
    
    char op;
    std::cin >> op;
    vector<ll> a(n),b(m);
    
    for (int i = 0; i < m; i++) {
        std::cin >> b[i];
    }
    
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
    }
    
    if(op=='+'){
        map<ll,ll> cnt;
        for (int i = 0; i < n; i++) {
            cnt[(k-a[i]%k)%k]++;
        }
        ll ans = 0;
        for (int i = 0; i < m; i++) {
            ans += cnt[b[i]%k];
        }
        std::cout << ans << std::endl;
    }else{
        ll ans = 0;
        map<ll,ll> cnt;
        for (int i = 0; i < n; i++) {
            ll g = __gcd(k,a[i]);
            cnt[k/g]++;
        }
        for (int i = 0; i < m; i++) {
            for (auto e : cnt) {
                if(b[i]%e.first==0){
                    ans+=e.second;
                }
            }
        }
        std::cout << ans << std::endl;
    }
}

0