結果

問題 No.2178 Payable Magic Items
ユーザー kakel-sankakel-san
提出日時 2023-09-05 19:43:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 140 ms / 4,000 ms
コード長 1,537 bytes
コンパイル時間 2,621 ms
コンパイル使用メモリ 111,296 KB
実行使用メモリ 41,172 KB
最終ジャッジ日時 2024-06-23 15:06:21
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
27,716 KB
testcase_01 AC 32 ms
25,640 KB
testcase_02 AC 31 ms
25,644 KB
testcase_03 AC 77 ms
31,584 KB
testcase_04 AC 32 ms
27,332 KB
testcase_05 AC 74 ms
31,536 KB
testcase_06 AC 73 ms
29,488 KB
testcase_07 AC 32 ms
25,528 KB
testcase_08 AC 76 ms
27,480 KB
testcase_09 AC 40 ms
31,472 KB
testcase_10 AC 31 ms
25,396 KB
testcase_11 AC 136 ms
40,924 KB
testcase_12 AC 138 ms
40,796 KB
testcase_13 AC 140 ms
41,044 KB
testcase_14 AC 140 ms
41,172 KB
testcase_15 AC 139 ms
40,924 KB
testcase_16 AC 140 ms
41,040 KB
testcase_17 AC 96 ms
34,536 KB
testcase_18 AC 33 ms
27,172 KB
testcase_19 AC 55 ms
35,172 KB
testcase_20 AC 33 ms
27,456 KB
testcase_21 AC 33 ms
25,648 KB
testcase_22 AC 33 ms
25,516 KB
testcase_23 AC 31 ms
25,396 KB
testcase_24 AC 121 ms
36,304 KB
testcase_25 AC 84 ms
32,820 KB
testcase_26 AC 60 ms
33,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var s = SList(n);
        var bitmax = (int)Math.Pow(5, k);
        var exist = new bool[bitmax];
        var upper = Enumerable.Repeat(true, bitmax).ToArray();
        var pow = new int[k];
        for (var i = 0; i < k; ++i) pow[i] = (int)Math.Pow(5, i);
        foreach (var si in s)
        {
            var id = 0;
            for (var i = 0; i < k; ++i) id += (si[i] - '0') * pow[i];
            exist[id] = true;
        }
        for (var b = bitmax - 1; b >= 0; --b)
        {
            var list = new int[k];
            var tmp = b;
            for (var i = 0; i < k; ++i)
            {
                list[i] = tmp % 5;
                tmp /= 5;
            }
            for (var i = 0; i < k; ++i) if (list[i] > 0)
            {
                var prev = b - pow[i];
                if (!upper[b] || exist[b]) upper[prev] = false;
            }
        }
        var ans = 0;
        for (var b = 0; b < bitmax; ++b) if (exist[b] && !upper[b]) ++ans;
        WriteLine(ans);
    }
}
0