結果

問題 No.1463 Hungry Kanten
ユーザー kokatsukokatsu
提出日時 2021-11-10 21:14:02
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 899 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 214,328 KB
実行使用メモリ 67,580 KB
最終ジャッジ日時 2024-06-22 13:10:31
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 31 ms
7,388 KB
testcase_03 AC 739 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 899 ms
67,580 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 32 ms
7,524 KB
testcase_17 AC 93 ms
14,016 KB
testcase_18 AC 30 ms
9,860 KB
testcase_19 AC 419 ms
53,252 KB
testcase_20 AC 598 ms
56,040 KB
testcase_21 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
import core.bitop;

void main() {
    int N, K;
    readf("%d %d\n", N, K);

    auto A = readln.chomp.split.to!(BigInt[]);

    bool[BigInt] list;
    foreach (i; 0 .. 2^^N) {
        if (i.popcnt < K) {
            continue;
        }

        BigInt S, M = 1;
        foreach (j; 0 .. N) {
            if ((i >> j) & 1) {
                S += A[j];
                M *= A[j];
            }
        }

        list[S] = true, list[M] = true;
    }

    list.length.writeln;
}
0