結果

問題 No.1330 Multiply or Divide
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-08 23:12:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 797 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 223,212 KB
最終ジャッジ日時 2024-11-16 16:26:05
合計ジャッジ時間 29,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 98 ms
123,264 KB
testcase_02 WA -
testcase_03 AC 38 ms
56,704 KB
testcase_04 AC 38 ms
109,696 KB
testcase_05 AC 38 ms
56,704 KB
testcase_06 AC 89 ms
169,216 KB
testcase_07 TLE -
testcase_08 AC 114 ms
168,820 KB
testcase_09 AC 113 ms
116,328 KB
testcase_10 AC 116 ms
223,212 KB
testcase_11 AC 111 ms
116,068 KB
testcase_12 AC 112 ms
111,732 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 38 ms
51,456 KB
testcase_17 TLE -
testcase_18 AC 114 ms
111,848 KB
testcase_19 AC 199 ms
111,972 KB
testcase_20 AC 170 ms
112,184 KB
testcase_21 AC 112 ms
111,984 KB
testcase_22 AC 112 ms
112,100 KB
testcase_23 WA -
testcase_24 AC 38 ms
51,456 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 38 ms
51,456 KB
testcase_29 AC 38 ms
51,712 KB
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 40 ms
51,456 KB
testcase_32 AC 38 ms
51,968 KB
testcase_33 AC 38 ms
51,712 KB
testcase_34 AC 88 ms
108,288 KB
testcase_35 AC 56 ms
72,064 KB
testcase_36 AC 82 ms
102,400 KB
testcase_37 AC 79 ms
97,792 KB
testcase_38 AC 66 ms
82,816 KB
testcase_39 AC 57 ms
74,368 KB
testcase_40 AC 61 ms
78,080 KB
testcase_41 AC 51 ms
68,480 KB
testcase_42 AC 75 ms
93,824 KB
testcase_43 AC 80 ms
98,432 KB
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if M == 1:
    print(0)
    exit()

ok = []
ng = []
for a in A:
    if a == 1:
        continue
    if a % P == 0:
        ng.append(a)
    else:
        ok.append(a)

if ok:
    v = max(ok)
    ans = 0
    x = 1
    while x < M:
        x *= v
        ans += 1
    print(ans)
    exit()

if ng:
    ans = -1
    for v in ng:
        tmp = v
        while tmp % P == 0:
            tmp //= P
        if tmp == 1:
            continue
        cnt = 0
        x = 1
        while x < M:
            if x % P == 0:
                x //= P
            else:
                x *= P
            cnt += 1
        if ans == -1:
            ans = cnt
        else:
            cnt = min(cnt, ans)
    print(ans)
    exit()

print(-1)
0