結果

問題 No.1330 Multiply or Divide
ユーザー googol_S0googol_S0
提出日時 2021-01-08 21:25:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 147,860 KB
最終ジャッジ日時 2024-11-16 10:04:48
合計ジャッジ時間 9,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 176 ms
129,108 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 97 ms
126,976 KB
testcase_07 AC 182 ms
129,268 KB
testcase_08 AC 394 ms
145,364 KB
testcase_09 AC 385 ms
145,440 KB
testcase_10 AC 371 ms
145,500 KB
testcase_11 AC 389 ms
145,368 KB
testcase_12 AC 396 ms
145,244 KB
testcase_13 AC 39 ms
52,736 KB
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 402 ms
147,532 KB
testcase_19 AC 399 ms
147,752 KB
testcase_20 AC 397 ms
147,748 KB
testcase_21 AC 393 ms
147,804 KB
testcase_22 AC 392 ms
147,860 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,096 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 AC 37 ms
52,480 KB
testcase_32 AC 40 ms
52,608 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 254 ms
122,516 KB
testcase_35 AC 96 ms
83,328 KB
testcase_36 AC 241 ms
117,888 KB
testcase_37 AC 212 ms
113,792 KB
testcase_38 AC 153 ms
102,056 KB
testcase_39 AC 127 ms
93,472 KB
testcase_40 AC 139 ms
96,896 KB
testcase_41 AC 82 ms
77,184 KB
testcase_42 AC 199 ms
110,260 KB
testcase_43 AC 222 ms
113,536 KB
testcase_44 AC 137 ms
134,656 KB
testcase_45 AC 138 ms
134,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P=map(int,input().split())
A=list(map(int,input().split()))
B=[]
C=[]
for i in range(N):
  B.append(A[i])
  C.append(1)
  while B[i]%P==0:
    B[i]//=P
    C[i]+=1
Z=max(A)
X=(M+Z-1)//Z
if max(B)==1 and X>1:
  print(-1)
  exit()
D=[[B[i],C[i]] for i in range(N)]
D.sort(key=lambda x:(x[0]**(1/x[1])))
P=0
Y=1
while Y*Z<M:
  Y*=D[-1][0]
  P+=D[-1][1]
print(P+1)
0