結果

問題 No.1330 Multiply or Divide
ユーザー 👑 KazunKazun
提出日時 2021-01-08 21:26:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 118,944 KB
最終ジャッジ日時 2024-11-16 10:07:40
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 89 ms
118,944 KB
testcase_02 WA -
testcase_03 AC 36 ms
52,900 KB
testcase_04 AC 35 ms
52,808 KB
testcase_05 AC 36 ms
52,832 KB
testcase_06 AC 83 ms
111,876 KB
testcase_07 WA -
testcase_08 AC 108 ms
112,256 KB
testcase_09 AC 110 ms
112,632 KB
testcase_10 AC 112 ms
112,416 KB
testcase_11 AC 114 ms
112,628 KB
testcase_12 AC 110 ms
112,512 KB
testcase_13 AC 36 ms
51,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
52,344 KB
testcase_17 WA -
testcase_18 AC 101 ms
112,368 KB
testcase_19 AC 101 ms
112,128 KB
testcase_20 AC 100 ms
112,416 KB
testcase_21 AC 100 ms
112,144 KB
testcase_22 AC 103 ms
112,400 KB
testcase_23 AC 103 ms
112,180 KB
testcase_24 AC 35 ms
52,428 KB
testcase_25 AC 35 ms
52,280 KB
testcase_26 AC 35 ms
52,672 KB
testcase_27 AC 35 ms
52,492 KB
testcase_28 AC 35 ms
53,500 KB
testcase_29 AC 35 ms
52,348 KB
testcase_30 AC 35 ms
52,792 KB
testcase_31 AC 36 ms
52,120 KB
testcase_32 AC 35 ms
52,572 KB
testcase_33 AC 35 ms
52,660 KB
testcase_34 AC 78 ms
107,980 KB
testcase_35 AC 51 ms
72,860 KB
testcase_36 AC 80 ms
103,376 KB
testcase_37 AC 80 ms
99,316 KB
testcase_38 AC 61 ms
83,508 KB
testcase_39 AC 54 ms
75,644 KB
testcase_40 AC 56 ms
78,696 KB
testcase_41 AC 46 ms
68,484 KB
testcase_42 AC 70 ms
94,264 KB
testcase_43 AC 74 ms
99,728 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P=map(int,input().split())
A=list(map(int,input().split()))

B=[]
for a in A:
    while a%P==0:
        a//=P
    B.append(a)

S=max(B)
if S==1:
    print(-1)
    exit(0)

t=1
K=0
while t<=M:
    t*=S
    K+=1

print(K)
0