結果

問題 No.1330 Multiply or Divide
ユーザー 7LJ2DLim1Zz2ccD7LJ2DLim1Zz2ccD
提出日時 2021-01-08 21:56:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 165,684 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-16 11:27:44
合計ジャッジ時間 57,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int get_ceil(long long m,long long tmp){
  int ans=1;
  int cur=tmp;
  while(cur<m){
    cur*=tmp;
    ans++;
  }
  return ans;
}

int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  int n;
  long long m,p;
  cin>>n>>m>>p;
  long long tmp;
  long long min_a=-1;
  for(int i=0;i<n;i++){
    cin>>tmp;
    if (tmp>m){
      min_a=1;
    }else{
      long long cnt=0;
      while(tmp%p==0){
	cnt++;
	tmp/=p;
      }
      if (tmp==1) continue;
      int ttt=get_ceil(m,tmp);
      if(min_a==-1){
	min_a=ttt+cnt*(ttt-1);
      }else{
	min_a=min(min_a,ttt+cnt*(ttt-1));
      }
    }
    
  }
  cout<<min_a<<"\n";
  return 0;
}
0