結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | 👑 CleyL |
提出日時 | 2020-02-14 21:55:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,532 bytes |
コンパイル時間 | 853 ms |
コンパイル使用メモリ | 78,068 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-11-16 00:37:11 |
合計ジャッジ時間 | 8,890 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
11,680 KB |
testcase_02 | AC | 2 ms
13,632 KB |
testcase_03 | AC | 2 ms
6,820 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 | 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 | 38 ms
6,816 KB |
testcase_11 | AC | 46 ms
6,820 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 30 ms
6,816 KB |
testcase_14 | AC | 69 ms
6,816 KB |
testcase_15 | AC | 38 ms
6,816 KB |
testcase_16 | AC | 48 ms
6,816 KB |
testcase_17 | AC | 31 ms
6,816 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 716 ms
6,820 KB |
testcase_20 | AC | 118 ms
11,684 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; template <typename T> T gcd(T a,T b){ if(a%b==0)return b; else return gcd(b,a%b); } template <typename T> T lcm(T a,T b){ return a/gcd(a,b)*b; } int main(){ long long n,m,k;cin>>n>>m>>k; char z;cin>>z; vector<long long> A(n); vector<long long> B(m); for(int i = 0; m > i; i++)cin>>B[i]; for(int i = 0; n > i; i++)cin>>A[i]; //A[i]と互いに素なB[j]の個数が答え..........O(N^2)!!!!!!解散!!!!!笑 if(z == '*'){ for(int i = 0; m > i; i++){ B[i] = gcd(B[i],k); } for(int i = 0; n > i; i++){ A[i] = gcd(A[i],k); } vector<long long> nya; for(int i = 1; k >= i*i; i++){ if(!(k%i)){ nya.push_back(i); if(i*i != k)nya.push_back(k/i); } } sort(B.begin(),B.end()); long long ans = 0LL; for(int i = 0; n > i; i++){ for(int j = 0; nya.size() > j; j++){ if((nya[j]*A[i])%k)continue; ans += (upper_bound(B.begin(),B.end(),nya[j])-lower_bound(B.begin(),B.end(),nya[j])); } } cout << ans << endl; }else{ long long ans = 0; for(int i = 0; m > i; i++){ B[i] = B[i]%k; } sort(B.begin(),B.end()); for(int i = 0; n > i; i++){ A[i] = A[i]%k; int want = (k-A[i])%k; ans += (upper_bound(B.begin(),B.end(),want)-lower_bound(B.begin(),B.end(),want)); } cout << ans << endl; } }