結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | t98slider |
提出日時 | 2023-07-27 02:54:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,575 ms / 2,000 ms |
コード長 | 1,436 bytes |
コンパイル時間 | 1,615 ms |
コンパイル使用メモリ | 176,888 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 16:20:40 |
合計ジャッジ時間 | 6,740 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 15 ms
5,248 KB |
testcase_11 | AC | 15 ms
5,248 KB |
testcase_12 | AC | 1,575 ms
5,248 KB |
testcase_13 | AC | 11 ms
5,248 KB |
testcase_14 | AC | 28 ms
5,248 KB |
testcase_15 | AC | 14 ms
5,248 KB |
testcase_16 | AC | 18 ms
5,248 KB |
testcase_17 | AC | 13 ms
5,248 KB |
testcase_18 | AC | 1,572 ms
5,248 KB |
testcase_19 | AC | 955 ms
5,248 KB |
testcase_20 | AC | 39 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m, k; char c; cin >> n >> m >> k >> c; vector<int> a(n), b(m); for(auto &&v : b) cin >> v; for(auto &&v : a) cin >> v; if(c == '+'){ ll ans = 0; for(int i = 0; i < n; i++) a[i] %= k; sort(a.begin(), a.end()); for(int i = 0; i < m; i++){ b[i] %= k; auto pa = equal_range(a.begin(), a.end(), k - b[i] == k ? 0 : k - b[i]); ans += pa.second - pa.first; } cout << ans << '\n'; }else{ vector<int> divs; for(int i = 1; i * i <= k; i++){ if(k % i == 0){ divs.emplace_back(i); if(k != i * i) divs.emplace_back(k / i); } } sort(divs.begin(), divs.end()); int cn = divs.size(); vector<int> cnt(cn); for(int i = 0; i < n; i++){ for(int j = cn - 1; j >= 0; j--){ if(a[i] % divs[j] == 0){ cnt[j]++; break; } } } ll ans = 0; for(int i = 0; i < m; i++){ for(int j = 0; j < cn; j++){ if(((ll)(divs[j]) * b[i]) % k == 0){ ans += cnt[j]; } } } cout << ans << '\n'; } }