結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 174 ms
29,408 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 139 ms
14,476 KB
testcase_07 WA -
testcase_08 AC 171 ms
32,752 KB
testcase_09 WA -
testcase_10 AC 171 ms
32,740 KB
testcase_11 AC 180 ms
32,504 KB
testcase_12 AC 172 ms
32,740 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 26 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 175 ms
32,508 KB
testcase_19 AC 174 ms
32,716 KB
testcase_20 AC 176 ms
32,740 KB
testcase_21 AC 187 ms
32,376 KB
testcase_22 AC 180 ms
32,400 KB
testcase_23 AC 175 ms
32,420 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 26 ms
10,624 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 27 ms
10,624 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 140 ms
26,736 KB
testcase_35 AC 58 ms
15,012 KB
testcase_36 AC 124 ms
25,128 KB
testcase_37 AC 113 ms
23,720 KB
testcase_38 AC 84 ms
18,480 KB
testcase_39 AC 64 ms
16,184 KB
testcase_40 AC 72 ms
17,092 KB
testcase_41 AC 52 ms
13,996 KB
testcase_42 AC 113 ms
22,376 KB
testcase_43 AC 120 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 = 1
for x in a:
    s = max(s, x%p)
if s == 1:
    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