結果

問題 No.1444 !Andd
ユーザー kakel-sankakel-san
提出日時 2024-07-08 22:05:13
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 9,854 ms
コンパイル使用メモリ 167,552 KB
実行使用メモリ 215,308 KB
最終ジャッジ日時 2024-07-08 22:05:31
合計ジャッジ時間 14,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,976 KB
testcase_01 AC 54 ms
31,228 KB
testcase_02 AC 56 ms
31,744 KB
testcase_03 AC 109 ms
55,552 KB
testcase_04 AC 101 ms
55,296 KB
testcase_05 AC 132 ms
55,936 KB
testcase_06 AC 99 ms
55,656 KB
testcase_07 AC 94 ms
53,760 KB
testcase_08 AC 135 ms
56,192 KB
testcase_09 AC 126 ms
55,548 KB
testcase_10 AC 111 ms
56,040 KB
testcase_11 AC 122 ms
55,920 KB
testcase_12 AC 147 ms
56,704 KB
testcase_13 AC 185 ms
57,728 KB
testcase_14 AC 142 ms
57,088 KB
testcase_15 AC 171 ms
57,728 KB
testcase_16 AC 251 ms
59,008 KB
testcase_17 AC 199 ms
58,496 KB
testcase_18 AC 227 ms
58,880 KB
testcase_19 AC 229 ms
58,992 KB
testcase_20 AC 230 ms
59,256 KB
testcase_21 AC 253 ms
59,136 KB
testcase_22 AC 229 ms
215,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (83 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();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        WriteLine(Andd(n, a));
    }
    static string Andd(int n, int[] a)
    {
        var dp = new int[2048];
        dp[1] = 1;
        var ans = new int[n];
        for (var i = 0; i < n; ++i)
        {
            var ndp = new int[2048];
            for (var j = 0; j < 1024; ++j)
            {
                if (dp[j] > 0 || dp[j + 1024] > 0) ndp[j & a[i]] = 1;
                if (dp[j] > 0)
                {
                    if (j * a[i] < 1024) ndp[j * a[i]] |= dp[j];
                    else ndp[j * a[i] % 1024 + 1024] += dp[j];
                }
                if (a[i] != 0 && dp[j + 1024] > 0) ndp[j * a[i] % 1024 + 1024] += dp[j + 1024];
            }
            dp = ndp;
            ans[i] = dp.Sum();
        }
        return string.Join("\n", ans);
    }
}
0