結果

問題 No.1330 Multiply or Divide
ユーザー ryuusagiryuusagi
提出日時 2021-01-08 23:09:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,504 KB
最終ジャッジ日時 2024-11-16 15:41:42
合計ジャッジ時間 5,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 98 ms
108,672 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 90 ms
104,576 KB
testcase_07 WA -
testcase_08 AC 153 ms
116,352 KB
testcase_09 AC 154 ms
116,992 KB
testcase_10 AC 155 ms
117,504 KB
testcase_11 AC 154 ms
117,248 KB
testcase_12 AC 155 ms
117,120 KB
testcase_13 AC 38 ms
51,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
51,328 KB
testcase_17 WA -
testcase_18 AC 138 ms
115,072 KB
testcase_19 AC 136 ms
116,224 KB
testcase_20 AC 137 ms
115,456 KB
testcase_21 AC 137 ms
115,456 KB
testcase_22 AC 135 ms
115,584 KB
testcase_23 AC 101 ms
112,896 KB
testcase_24 AC 39 ms
51,328 KB
testcase_25 AC 37 ms
51,456 KB
testcase_26 AC 38 ms
51,328 KB
testcase_27 AC 36 ms
51,328 KB
testcase_28 AC 37 ms
51,456 KB
testcase_29 AC 37 ms
51,584 KB
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 38 ms
51,328 KB
testcase_32 AC 38 ms
51,456 KB
testcase_33 AC 38 ms
51,328 KB
testcase_34 AC 113 ms
102,144 KB
testcase_35 AC 61 ms
69,504 KB
testcase_36 AC 108 ms
96,640 KB
testcase_37 AC 97 ms
92,672 KB
testcase_38 AC 75 ms
79,616 KB
testcase_39 AC 64 ms
71,680 KB
testcase_40 AC 69 ms
74,880 KB
testcase_41 AC 57 ms
66,176 KB
testcase_42 AC 92 ms
89,600 KB
testcase_43 AC 101 ms
94,080 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,*a=map(int,open(0).read().split())
a.sort(reverse=True)
b=[i if i%p else i//p for i in a]
b.sort(reverse=True)
x=1
j=0
while x<=m:
    if x*a[0]>m:
        print(j+1)
        exit()
    if b[0]==1:
        print(-1)
        exit()
    x*=b[0]
    j+=1
0