結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | erbowl |
提出日時 | 2020-03-30 22:03:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 124 ms / 2,000 ms |
コード長 | 1,352 bytes |
コンパイル時間 | 1,726 ms |
コンパイル使用メモリ | 179,000 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-06-23 04:36:24 |
合計ジャッジ時間 | 3,471 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 33 ms
7,680 KB |
testcase_11 | AC | 16 ms
6,940 KB |
testcase_12 | AC | 99 ms
6,944 KB |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 29 ms
6,940 KB |
testcase_15 | AC | 16 ms
6,940 KB |
testcase_16 | AC | 45 ms
8,832 KB |
testcase_17 | AC | 13 ms
6,944 KB |
testcase_18 | AC | 98 ms
6,944 KB |
testcase_19 | AC | 59 ms
6,940 KB |
testcase_20 | AC | 124 ms
17,280 KB |
ソースコード
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 = 1; i <= sqrt(k); i++) { if(k%i==0){ cnt[i]=0; cnt[k/i]=0; } } for (int i = 0; i < n; i++) { ll g = __gcd(k,a[i]); cnt[k/g]++; } map<ll,ll> sum; for (auto e : cnt) { for (auto ee : cnt) { if(e.first%ee.first==0) sum[e.first] += ee.second; } // std::cout << sum[e.first]<<" "<<e.first<<" "<<e.second << std::endl; } for (int i = 0; i < m; i++) { ans += sum[__gcd(b[i],k)]; } std::cout << ans << std::endl; } }