結果

問題 No.2593 Reorder and Mod 120
ユーザー merom686merom686
提出日時 2023-12-21 11:26:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 3,292 ms
コンパイル使用メモリ 254,588 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2023-12-21 11:26:39
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 1 ms
6,548 KB
testcase_04 AC 2 ms
6,548 KB
testcase_05 AC 2 ms
6,548 KB
testcase_06 AC 2 ms
6,548 KB
testcase_07 AC 1 ms
6,548 KB
testcase_08 AC 2 ms
6,548 KB
testcase_09 AC 1 ms
6,548 KB
testcase_10 AC 1 ms
6,548 KB
testcase_11 AC 2 ms
6,548 KB
testcase_12 AC 2 ms
6,548 KB
testcase_13 AC 3 ms
6,548 KB
testcase_14 AC 2 ms
6,548 KB
testcase_15 AC 3 ms
6,548 KB
testcase_16 AC 2 ms
6,548 KB
testcase_17 AC 2 ms
6,548 KB
testcase_18 AC 2 ms
6,548 KB
testcase_19 AC 3 ms
6,548 KB
testcase_20 AC 2 ms
6,548 KB
testcase_21 AC 2 ms
6,548 KB
testcase_22 AC 3 ms
6,548 KB
testcase_23 AC 3 ms
6,548 KB
testcase_24 AC 3 ms
6,548 KB
testcase_25 AC 3 ms
6,548 KB
testcase_26 AC 3 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    string s;
    cin >> n >> s;

    int p[10] = {};
    for (int i = 0; i < n; i++) {
        p[s[i] - '0']++;
    }

    set<int> st;
    if (n < 5) {
        sort(s.begin(), s.end());
        do {
            st.insert(stoi(s) % 120);
        } while (next_permutation(s.begin(), s.end()));
    } else {
        for (int i = 0; i < 10; i++) {
            for (int j = 0; j < 10; j++) {
                for (int k = 0; k < 10; k++) {
                    int q[10] = {};
                    q[i]++;
                    q[j]++;
                    q[k]++;
                    int f = 1;
                    for (int h = 0; h < 10; h++) {
                        if (p[h] < q[h]) f = 0;
                    }
                    if (f) st.insert(((i * 10 + j) * 10 + k) % 40);
                }
            }
        }
    }
    cout << st.size() << endl;

    return 0;
}
0