結果

問題 No.1330 Multiply or Divide
ユーザー kakel-sankakel-san
提出日時 2024-08-22 23:44:39
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 8,559 ms
コンパイル使用メモリ 165,540 KB
実行使用メモリ 199,428 KB
最終ジャッジ日時 2024-08-22 23:45:02
合計ジャッジ時間 15,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,192 KB
testcase_01 AC 100 ms
53,776 KB
testcase_02 AC 61 ms
30,720 KB
testcase_03 AC 62 ms
30,592 KB
testcase_04 AC 62 ms
30,848 KB
testcase_05 AC 61 ms
30,592 KB
testcase_06 AC 89 ms
43,136 KB
testcase_07 AC 132 ms
53,404 KB
testcase_08 AC 104 ms
55,300 KB
testcase_09 AC 109 ms
55,832 KB
testcase_10 AC 107 ms
55,312 KB
testcase_11 AC 107 ms
55,576 KB
testcase_12 AC 138 ms
55,572 KB
testcase_13 AC 62 ms
30,316 KB
testcase_14 AC 61 ms
30,192 KB
testcase_15 AC 60 ms
30,592 KB
testcase_16 AC 60 ms
30,208 KB
testcase_17 AC 61 ms
32,664 KB
testcase_18 AC 102 ms
55,324 KB
testcase_19 AC 104 ms
55,320 KB
testcase_20 AC 103 ms
55,444 KB
testcase_21 AC 104 ms
55,192 KB
testcase_22 AC 103 ms
55,460 KB
testcase_23 AC 109 ms
66,056 KB
testcase_24 AC 62 ms
30,208 KB
testcase_25 AC 62 ms
30,464 KB
testcase_26 AC 61 ms
30,720 KB
testcase_27 AC 62 ms
30,720 KB
testcase_28 AC 61 ms
30,456 KB
testcase_29 AC 62 ms
30,564 KB
testcase_30 AC 62 ms
30,208 KB
testcase_31 AC 60 ms
30,720 KB
testcase_32 AC 61 ms
30,848 KB
testcase_33 AC 61 ms
30,592 KB
testcase_34 AC 95 ms
51,128 KB
testcase_35 AC 73 ms
36,344 KB
testcase_36 AC 92 ms
49,268 KB
testcase_37 AC 90 ms
47,336 KB
testcase_38 AC 83 ms
40,684 KB
testcase_39 AC 74 ms
37,376 KB
testcase_40 AC 76 ms
39,404 KB
testcase_41 AC 72 ms
35,064 KB
testcase_42 AC 88 ms
48,520 KB
testcase_43 AC 91 ms
47,748 KB
testcase_44 AC 91 ms
42,860 KB
testcase_45 AC 90 ms
199,428 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (125 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, p) = (c[0], c[1], c[2]);
        var a = NList;
        var max = a.Max();
        var mul = new int[31];
        foreach (var ai in a)
        {
            var tmp = ai;
            var count = 1;
            while (tmp % p == 0)
            {
                tmp /= p;
                ++count;
            }
            if (tmp > 1) mul[count] = Math.Max(mul[count], tmp);
        }
        var dp = new long[1000];
        dp[0] = 1;
        for (var i = 0; i < dp.Length; ++i)
        {
            if (dp[i] * max > m)
            {
                WriteLine(i + 1);
                return;
            }
            for (var j = 1; j < mul.Length && i + j < dp.Length; ++j) if (mul[j] > 0)
            {
                dp[i + j] = Math.Max(dp[i + j], dp[i] * mul[j]);
            }
        }
        WriteLine(-1);
    }
}
0