結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | yakki |
提出日時 | 2020-02-14 22:21:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,723 bytes |
コンパイル時間 | 1,650 ms |
コンパイル使用メモリ | 132,660 KB |
実行使用メモリ | 39,936 KB |
最終ジャッジ日時 | 2024-11-16 00:52:58 |
合計ジャッジ時間 | 10,531 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
23,208 KB |
testcase_02 | WA | - |
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 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 64 ms
8,704 KB |
testcase_11 | AC | 42 ms
6,820 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 27 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 84 ms
11,136 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | WA | - |
testcase_20 | AC | 265 ms
39,936 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> using namespace std; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 #define MOD 1000000007 //#define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; vector<ll> divisor(ll n){ vector<ll> s; for(ll i = 2; i*i <= n; i++){ if(n % i == 0){ s.push_back(i); s.push_back(n/i); } } return s; } int main(){ int N,M,K; cin >> N >> M >> K; char op; cin >> op; vector<ll> A(N),B(M); rep(i,M){ cin >> B[i]; B[i] %= K; } rep(i,N){ cin >> A[i]; A[i] %= K; } map<ll,ll> mp1,mp2; rep(i,N){ mp1[A[i]]++; } rep(i,M){ mp2[B[i]]++; } if(op == '+'){ ll ans = 0; rep(i,N){ ans += mp2[K-A[i]]; } cout << ans << endl; } else{ vector<ll> div = divisor(K); ll ans = 0; ans += mp1[0]*M+mp2[0]*N-mp1[0]*mp2[0]; rep(i,N){ vector<ll> div1 = divisor(A[i]); int k = K; for(int u : div1){ while(k%u == 0){ k /= u; } } for(int u : div){ if(u % k == 0){ ans += mp2[u]; } } } cout << ans << endl; } }