結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー sotanishysotanishy
提出日時 2021-07-30 22:32:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 205,156 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-09-16 01:07:27
合計ジャッジ時間 7,490 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 343 ms
64,512 KB
testcase_15 AC 357 ms
67,584 KB
testcase_16 AC 355 ms
67,584 KB
testcase_17 AC 355 ms
67,584 KB
testcase_18 AC 357 ms
67,584 KB
testcase_19 AC 358 ms
67,584 KB
testcase_20 AC 159 ms
67,584 KB
testcase_21 AC 189 ms
59,776 KB
testcase_22 AC 182 ms
66,432 KB
testcase_23 AC 232 ms
66,560 KB
testcase_24 AC 207 ms
66,560 KB
testcase_25 AC 205 ms
65,792 KB
testcase_26 WA -
testcase_27 AC 242 ms
49,664 KB
testcase_28 AC 105 ms
22,912 KB
testcase_29 AC 91 ms
23,296 KB
testcase_30 AC 149 ms
32,512 KB
testcase_31 AC 232 ms
49,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, K;
    cin >> N >> K;
    vector<int> c(10);
    for (int i = 1; i < 10; ++i) cin >> c[i];
    vector<int> cum(11);
    for (int i = 0; i < 10; ++i) cum[i+1] = cum[i] + c[i];
    vector cnt(1 << N, vector<int>(K));
    cnt[0][0] = 1;
    for (int S = 0; S < 1 << N; ++S) {
        for (int i = 1; i < 10; ++i) {
            int j = cum[i];
            while (j < cum[i+1] && (S >> j & 1)) ++j;
            if (j == cum[i+1]) continue;
            for (int k = 0; k < K; ++k) {
                int n = (10 * k + i) % K;
                cnt[S | (1 << j)][n] += cnt[S][k];
            }
        }
    }
    cout << cnt[(1 << N) - 1][0] << endl;
}
0