結果

問題 No.1330 Multiply or Divide
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-01-08 22:02:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,656 KB
最終ジャッジ日時 2024-11-16 11:49:55
合計ジャッジ時間 15,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 191 ms
39,656 KB
testcase_02 AC 29 ms
15,872 KB
testcase_03 TLE -
testcase_04 AC 29 ms
16,000 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 151 ms
14,604 KB
testcase_07 WA -
testcase_08 AC 186 ms
32,744 KB
testcase_09 TLE -
testcase_10 AC 188 ms
32,872 KB
testcase_11 AC 187 ms
32,512 KB
testcase_12 AC 185 ms
32,872 KB
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 29 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 193 ms
32,508 KB
testcase_19 AC 193 ms
32,864 KB
testcase_20 AC 195 ms
32,868 KB
testcase_21 AC 203 ms
32,380 KB
testcase_22 AC 192 ms
32,508 KB
testcase_23 AC 187 ms
32,416 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 28 ms
10,496 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 29 ms
10,496 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 29 ms
10,496 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 151 ms
26,736 KB
testcase_35 AC 63 ms
14,892 KB
testcase_36 AC 138 ms
25,248 KB
testcase_37 AC 125 ms
23,684 KB
testcase_38 AC 88 ms
18,480 KB
testcase_39 AC 71 ms
16,052 KB
testcase_40 AC 83 ms
17,260 KB
testcase_41 AC 56 ms
13,828 KB
testcase_42 AC 121 ms
22,376 KB
testcase_43 AC 133 ms
24,584 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p = map(int,input().split())
a = list(map(int,input().split()))
m_a = max(a)

s = 0
for x in a:
    s = max(s, x%p)
if s == 0:
    if m_a > m:
        print(1)
    else:
        print(-1)
else:
    ans = 1
    x = 1
    while x*m_a <= m:
        x *= s
        ans += 1
    print(ans)
    
0