結果

問題 No.1330 Multiply or Divide
ユーザー ineedyourlovepineedyourlovep
提出日時 2021-01-08 22:33:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 961 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 176,924 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-16 13:27:39
合計ジャッジ時間 59,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 WA -
testcase_03 AC 2 ms
10,112 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
9,984 KB
testcase_06 AC 37 ms
10,496 KB
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 2 ms
9,984 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
10,496 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 168 ms
9,472 KB
testcase_24 AC 2 ms
10,496 KB
testcase_25 AC 2 ms
9,344 KB
testcase_26 AC 1 ms
10,496 KB
testcase_27 AC 1 ms
9,344 KB
testcase_28 AC 2 ms
10,496 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 TLE -
testcase_35 AC 1,348 ms
5,248 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 1,717 ms
5,248 KB
testcase_40 TLE -
testcase_41 AC 1,055 ms
5,248 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
using namespace std;
using ll = long long;
using P = pair<int, int>;

set<ll> prime_factor(ll n){
    set<ll> pf;
    //if(n == 1) pf.push_back(P(1, 1));
    for(ll i = 2; i*i <= n; i++){
        if(n%i == 0){
            while(n%i == 0){
                n /= i;
            }
            pf.insert(i);
        }
    }
    if(n != 1) pf.insert(n);
    return pf;
}

int main()
{
    ll n, m, p;
    cin >> n >> m >> p;
    vector<ll> a(n);
    rep(i, 0, n) cin >> a[i];
    sort(a.begin(), a.end());
    int cnt = 0;
    ll mx = 0;
    rep(i, 0, n){
        set<ll> pf = prime_factor(a[i]);
        if(pf.find(p) != pf.end()) continue;
        mx = max(mx, a[i]);
    }
    if(mx == 0){
        cout << -1 << endl;
        return 0;
    }
    ll x = 1;
    while(x <= m){
        cnt++;
        if(x*a[n-1] > m) break;
        else x *= mx;
    }
    cout << cnt << endl;
    return 0;
}
0