結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 102 ms
109,824 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 77 ms
101,120 KB
testcase_07 WA -
testcase_08 AC 116 ms
102,556 KB
testcase_09 AC 114 ms
102,696 KB
testcase_10 AC 114 ms
102,356 KB
testcase_11 AC 115 ms
102,480 KB
testcase_12 AC 114 ms
102,616 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 34 ms
52,352 KB
testcase_15 AC 35 ms
52,352 KB
testcase_16 AC 35 ms
52,096 KB
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 89 ms
102,272 KB
testcase_19 AC 90 ms
102,160 KB
testcase_20 AC 91 ms
101,760 KB
testcase_21 AC 91 ms
102,260 KB
testcase_22 AC 89 ms
102,144 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,352 KB
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 35 ms
52,224 KB
testcase_27 AC 35 ms
52,352 KB
testcase_28 AC 35 ms
51,968 KB
testcase_29 AC 35 ms
52,224 KB
testcase_30 AC 35 ms
51,840 KB
testcase_31 AC 36 ms
52,480 KB
testcase_32 AC 36 ms
52,352 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 72 ms
96,000 KB
testcase_35 AC 50 ms
68,608 KB
testcase_36 AC 67 ms
92,032 KB
testcase_37 AC 63 ms
88,064 KB
testcase_38 AC 55 ms
77,312 KB
testcase_39 AC 48 ms
70,528 KB
testcase_40 AC 50 ms
73,472 KB
testcase_41 AC 45 ms
66,176 KB
testcase_42 AC 67 ms
85,120 KB
testcase_43 AC 65 ms
88,960 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 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