結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | Strorkis |
提出日時 | 2020-02-14 22:47:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,417 bytes |
コンパイル時間 | 941 ms |
コンパイル使用メモリ | 76,052 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-11-16 01:10:36 |
合計ジャッジ時間 | 11,267 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,144 KB |
testcase_01 | AC | 2 ms
10,148 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
10,144 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 35 ms
6,816 KB |
testcase_11 | AC | 41 ms
6,820 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 26 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 43 ms
6,820 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 103 ms
10,152 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> 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; 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++; vector<int> v(d); int count = 0; for (int i = 0; i < m; i++) { int b; cin >> b; if (b % k == 0) { count++; continue; } for (int j = 2; j < d; j++) { if (b % j == 0) v[j]++; } } for (int i = 0; i < n; i++) { int a; cin >> a; if (a % k == 0) { ans += m; continue; } int x = k / gcd(a, k); if (x < d) ans += v[x]; ans += count; } } cout << ans << endl; }