結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | yakki |
提出日時 | 2020-02-14 22:18:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,707 bytes |
コンパイル時間 | 1,592 ms |
コンパイル使用メモリ | 135,956 KB |
実行使用メモリ | 32,512 KB |
最終ジャッジ日時 | 2024-11-16 00:49:51 |
合計ジャッジ時間 | 10,567 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
13,636 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 57 ms
7,552 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | AC | 27 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 79 ms
9,344 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | WA | - |
testcase_20 | AC | 225 ms
32,512 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>; set<ll> divisor(ll n){ set<ll> s; for(ll i = 2; i*i <= n; i++){ if(n % i == 0){ s.insert(i); s.insert(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<int,int> 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{ set<ll> div = divisor(K); ll ans = 0; ans += mp1[0]*M+mp2[0]*N-mp1[0]*mp2[0]; rep(i,N){ set<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; } }