結果

問題 No.1330 Multiply or Divide
ユーザー 👑 NachiaNachia
提出日時 2021-01-08 22:20:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 683 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 193,176 KB
最終ジャッジ日時 2025-01-17 12:35:16
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 45 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%llu%llu%llu",&N,&M,&P);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:15:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 ULL a; scanf("%llu",&a);
      |                        ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

ULL N,M,P;
ULL maxA,maxB;
pair<ULL,ULL> A[200000];

int main(){
	scanf("%llu%llu%llu",&N,&M,&P);
	maxA=1; maxB=1;
	rep(i,N){
		ULL a; scanf("%llu",&a);
		maxA=max(maxA,a);
		int p=1;
		while(a%P==0){ a/=P; p++; }
		A[i]={a,p};
		maxB=max(maxB,a);
	}
	ULL x=1;
	if(maxA>M){ printf("1\n"); return 0; }
	if(maxB==1){ printf("-1\n"); return 0; }
	ULL ans=1000000;
	M=(M-1)/maxA+1;
	rep(i,N){
		if(A[i].first==1) continue;
		ULL x=1, tmp=1;
		while(x<=M){ x*=A[i].first; tmp+=A[i].second; }
		ans=min(ans,tmp);
	}
	printf("%llu\n",ans);
	return 0;
}
0