結果

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

ソースコード

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];
	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());
	for (int i = 0; i < N; i++) {
		if (A[i] > M) {
			ans = min(ans, 1LL);
		}
		if (A[i] % P != 0) {
			ll x = 1;
			ll now = 0;
			while (true) {
				if (x > M)break;
				now++;
				if (now > 100) {
					now = INF; break;
				}
				if (now != 1)x *= A[i];
				else x *= A[0];
			}
			ans = min(ans, now);

		}
		
		
	}
	if (ans != INF)cout << ans << endl;
	else cout << -1 << endl;
}
0