結果

問題 No.1330 Multiply or Divide
ユーザー maninimanini
提出日時 2021-01-26 11:00:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-06-23 10:22:06
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
109,952 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 34 ms
52,976 KB
testcase_05 AC 36 ms
52,372 KB
testcase_06 AC 79 ms
101,616 KB
testcase_07 WA -
testcase_08 AC 118 ms
102,552 KB
testcase_09 AC 120 ms
102,700 KB
testcase_10 AC 116 ms
102,328 KB
testcase_11 AC 117 ms
102,208 KB
testcase_12 AC 118 ms
102,332 KB
testcase_13 AC 37 ms
52,460 KB
testcase_14 AC 36 ms
53,200 KB
testcase_15 AC 37 ms
52,700 KB
testcase_16 AC 37 ms
52,760 KB
testcase_17 AC 36 ms
52,772 KB
testcase_18 AC 95 ms
102,144 KB
testcase_19 AC 90 ms
102,212 KB
testcase_20 AC 92 ms
102,248 KB
testcase_21 AC 90 ms
102,016 KB
testcase_22 AC 92 ms
101,812 KB
testcase_23 WA -
testcase_24 AC 36 ms
53,184 KB
testcase_25 AC 37 ms
52,372 KB
testcase_26 AC 36 ms
52,824 KB
testcase_27 AC 37 ms
52,140 KB
testcase_28 AC 37 ms
53,168 KB
testcase_29 AC 36 ms
52,860 KB
testcase_30 AC 35 ms
52,272 KB
testcase_31 AC 36 ms
53,500 KB
testcase_32 AC 35 ms
52,676 KB
testcase_33 AC 36 ms
53,168 KB
testcase_34 AC 71 ms
96,236 KB
testcase_35 AC 46 ms
68,632 KB
testcase_36 AC 67 ms
92,668 KB
testcase_37 AC 63 ms
88,564 KB
testcase_38 AC 55 ms
78,920 KB
testcase_39 AC 48 ms
70,940 KB
testcase_40 AC 51 ms
73,860 KB
testcase_41 AC 45 ms
67,024 KB
testcase_42 AC 61 ms
85,608 KB
testcase_43 AC 65 ms
89,376 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

N, M, P = list(map(int, input().split()))     # スペース区切り連続数字
A = list(map(int, input().split()))     # スペース区切り連続数字

if M == 1:
    print("0")
    exit()
if max(A) > M:
    print("1")
    exit()

B = [0] * N
C = [0] * N

for i in range(N):
    c = 1
    b = A[i]
    while True:
        if b % 2 == 0:
            b //= 2
            c += 1
        else:
            B[i] = b
            C[i] = c
            break

res = INF
for i in range(N):
    if B[i] == 1:
        continue

    x = M // (A[i] * B[i])
    if (A[i] * B[i]) * (x - 1) > M:
        t = C[i] * (x - 1) + 1
        res = min(res, t)
    elif (A[i] * B[i]) * x > M:
        t = C[i] * x + 1
        res = min(res, t)
    elif (A[i] * B[i]) * (x + 1) > M:
        t = C[i] * (x + 1) + 1
        res = min(res, t)

if res == INF:
    print("-1")
else:
    print(res)
0