結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | rodea |
提出日時 | 2020-02-23 18:04:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,066 bytes |
コンパイル時間 | 2,031 ms |
コンパイル使用メモリ | 126,008 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-11-16 03:24:13 |
合計ジャッジ時間 | 8,089 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 37 ms
6,824 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | AC | 13 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 44 ms
7,168 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | AC | 924 ms
6,820 KB |
testcase_20 | AC | 118 ms
13,440 KB |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; constexpr double pi = acos(-1); constexpr double EPS = 1e-10; int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; vector<ll> divisor(ll n){ vector<ll> v; for(ll i=1; i*i<=n; i++){ if(n % i == 0){ v.emplace_back(i); v.emplace_back(n / i); } } sort(v.begin(), v.end()); return v; } int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, m, k; cin>>n>>m>>k; char op; cin>>op; vector<int> b(m), a(n); for(int i=0; i<m; i++) cin>>b[i]; for(int i=0; i<n; i++) cin>>a[i]; ll ans = 0; if(op == '+'){ map<int, int> bMODk; for(int i=0; i<m; i++){ bMODk[b[i] % k]++; } for(int i=0; i<n; i++){ int aMODk = a[i] % k; ans += bMODk[k - aMODk]; } } else{ auto div = divisor(k); map<int, int> b2div; for(int i=0; i<m; i++){ for(auto j : div){ if(b[i] % j == 0){ b2div[j]++; } } } for(int i=0; i<n; i++){ int a2div = k / __gcd(a[i], k); ans += b2div[a2div]; } } cout << ans << endl; return 0; }