結果

問題 No.1330 Multiply or Divide
ユーザー Example0911
提出日時 2021-01-08 22:09:13
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 200,120 KB
最終ジャッジ日時 2025-01-17 12:17:47
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 39 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = (ll)1e9 + 7;



signed main() {
	ll N, M, P; cin >> N >> M >> P;
	vector<ll>A(N); for (int i = 0; i < N; i++)cin >> A[i];
	vector<ll>B = A;
	ll ans = INF;
	bool ok = true;
	for (int i = 0; i < N; i++) {
		while (A[i] % P == 0) {
			A[i] /= P;
		}
	}
	sort(A.rbegin(), A.rend());
	sort(B.rbegin(), B.rend());
	ll x = 1;
	ll now = 0;
	while (true) {
		if (x > M)break;
		now++;
		if (now > 1000000) {
			now = INF; break;
		}
		if (now != 1)x *= A[0];
		else x *= B[0];
	}
	ans = min(ans, now);
	
	if (ans != INF)cout << ans << endl;
	else cout << -1 << endl;
}
0