結果

問題 No.1929 Exponential Sequence
ユーザー kakel-sankakel-san
提出日時 2023-10-24 23:40:50
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 2,067 bytes
コンパイル時間 10,861 ms
コンパイル使用メモリ 171,876 KB
実行使用メモリ 187,064 KB
最終ジャッジ日時 2024-09-24 18:44:37
合計ジャッジ時間 14,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,336 KB
testcase_01 AC 59 ms
30,720 KB
testcase_02 AC 58 ms
30,464 KB
testcase_03 AC 226 ms
40,864 KB
testcase_04 AC 60 ms
30,720 KB
testcase_05 AC 59 ms
30,720 KB
testcase_06 AC 60 ms
30,336 KB
testcase_07 AC 59 ms
30,336 KB
testcase_08 AC 59 ms
30,336 KB
testcase_09 AC 60 ms
30,448 KB
testcase_10 AC 59 ms
30,464 KB
testcase_11 AC 59 ms
30,720 KB
testcase_12 AC 60 ms
30,464 KB
testcase_13 AC 60 ms
30,584 KB
testcase_14 AC 60 ms
30,336 KB
testcase_15 AC 61 ms
31,360 KB
testcase_16 AC 59 ms
30,584 KB
testcase_17 AC 60 ms
30,336 KB
testcase_18 AC 60 ms
30,564 KB
testcase_19 AC 61 ms
30,336 KB
testcase_20 AC 60 ms
30,592 KB
testcase_21 AC 224 ms
40,692 KB
testcase_22 AC 170 ms
36,864 KB
testcase_23 AC 226 ms
40,912 KB
testcase_24 AC 135 ms
35,840 KB
testcase_25 AC 227 ms
40,756 KB
testcase_26 AC 229 ms
40,864 KB
testcase_27 AC 60 ms
187,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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, s) = (c[0], c[1]);
        var a = NList;
        var fh = GetList(s, a.Take(n / 2).ToList());
        var sh = GetList(s, a.Skip(n / 2).ToList());
        fh.Sort();
        sh.Sort();
        var pos = sh.Count - 1;
        var ans = 0L;
        for (var i = 0; i < fh.Count; ++i)
        {
            while (pos >= 0 && fh[i] + sh[pos] > s) --pos;
            ans += pos + 1;
        }
        WriteLine(ans);
    }
    static List<int> GetList(int s, List<int> a)
    {
        var ans = new List<int>();
        if (a.Count == 0)
        {
            ans.Add(0);
            return ans;
        }
        var len = new List<int>[a.Count];
        for (var i = 0; i < len.Length; ++i)
        {
            len[i] = new List<int>();
            len[i].Add(1);
            var tmp = 1L;
            while (tmp * a[i] <= s)
            {
                len[i].Add((int)tmp * a[i]);
                tmp *= a[i];
            }
        }
        var bitmax = 1;
        foreach (var li in len) bitmax *= li.Count;
        for (var b = 1; b < bitmax; ++b)
        {
            var tmp = b;
            var flg = true;
            var sum = 0L;
            for (var i = 0; i < len.Length; ++i)
            {
                if (tmp % len[i].Count == 0)
                {
                    flg = false;
                    break;
                }
                sum += len[i][tmp % len[i].Count];
                tmp /= len[i].Count;
            }
            if (flg && sum <= s) ans.Add((int)sum);
        }
        return ans;
    }
}
0