結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | Strorkis |
提出日時 | 2020-02-14 23:12:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,428 bytes |
コンパイル時間 | 969 ms |
コンパイル使用メモリ | 88,712 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-11-16 01:29:05 |
合計ジャッジ時間 | 11,340 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,020 KB |
testcase_01 | AC | 2 ms
10,020 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
10,020 KB |
testcase_04 | AC | 2 ms
13,640 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 34 ms
6,820 KB |
testcase_11 | AC | 40 ms
6,820 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 27 ms
6,816 KB |
testcase_14 | AC | 64 ms
6,816 KB |
testcase_15 | AC | 35 ms
6,816 KB |
testcase_16 | AC | 43 ms
6,820 KB |
testcase_17 | AC | 29 ms
6,816 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 102 ms
10,020 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> using namespace std; typedef long long ll; int gcd(int a, int b) { int r = a % b; return r ? gcd(b, r) : b; } int main() { int n, m, k; cin >> n >> m >> k; char op; cin >> op; ll ans = 0; if (op == '+') { vector<int> v(m); for (int i = 0; i < m; i++) { int b; cin >> b; v[i] = b % k; } sort(v.begin(), v.end()); for (int i = 0; i < n; i++) { int a; cin >> a; int x = (k - a % k) % k; int l = 0, r = m; while (l < r) { int c = (l + r) / 2; if (v[c] < x) l = c + 1; else r = c; } if (v[l] != x) continue; int tmp = l; r = m; while (l < r) { int c = (l + r) / 2; if (v[c] <= x) l = c + 1; else r = c; } ans += l - tmp; } } else { int d = 1; while (d * d <= k) d++; map<int, int> dic; int count = 0; for (int i = 0; i < m; i++) { int b; cin >> b; if (b % k == 0) { count++; continue; } int x = gcd(b, k); for (int j = 2; j < d; j++) { if (x % j == 0) dic[j]++; } } for (int i = 0; i < n; i++) { int a; cin >> a; if (a % k == 0) { ans += m; continue; } ans += dic[k / gcd(a, k)] + count; } } cout << ans << endl; }