結果

問題 No.1463 Hungry Kanten
ユーザー bluemeganebluemegane
提出日時 2021-04-17 09:48:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,435 bytes
コンパイル時間 3,758 ms
コンパイル使用メモリ 110,360 KB
実行使用メモリ 55,788 KB
最終ジャッジ日時 2024-07-03 15:53:52
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
28,516 KB
testcase_01 AC 28 ms
26,676 KB
testcase_02 AC 42 ms
30,692 KB
testcase_03 AC 279 ms
32,196 KB
testcase_04 AC 30 ms
24,120 KB
testcase_05 AC 360 ms
55,788 KB
testcase_06 AC 29 ms
28,264 KB
testcase_07 AC 28 ms
26,044 KB
testcase_08 AC 31 ms
26,352 KB
testcase_09 AC 31 ms
28,392 KB
testcase_10 AC 32 ms
30,188 KB
testcase_11 AC 30 ms
30,316 KB
testcase_12 AC 30 ms
28,068 KB
testcase_13 AC 30 ms
26,352 KB
testcase_14 AC 32 ms
26,428 KB
testcase_15 AC 30 ms
28,020 KB
testcase_16 AC 41 ms
28,772 KB
testcase_17 AC 61 ms
32,728 KB
testcase_18 AC 43 ms
34,808 KB
testcase_19 AC 176 ms
46,912 KB
testcase_20 AC 253 ms
52,564 KB
testcase_21 AC 30 ms
27,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAn(n, k, a);
    }
    static void getAn(int n, int k, long[] a)
    {
        var hs = new HashSet<BigInteger>();
        var imax = 1 << n;
        for (int i = 0; i < imax; i++)
        {
            if (countbit(i) >= k)
            {
                var s1 = 0L;
                BigInteger s2 = 1;
                for (int j = 0; j < n; j++)
                {
                    if (((i >> j) & 1) == 1)
                    {
                        s1 += a[j];
                        s2 *= a[j];
                    }
                }
                hs.Add(s1);
                hs.Add(s2);
            }
        }
        Console.WriteLine(hs.Count());
    }
    static int countbit(long bits)
    {
        bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555);
        bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333);
        bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f);
        bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff);
        return (int)(bits & 0x0000ffff) + (int)(bits >> 16 & 0x0000ffff);
    }
}
0