結果

問題 No.2593 Reorder and Mod 120
ユーザー yansi819yansi819
提出日時 2024-04-04 18:53:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 4,329 ms
コンパイル使用メモリ 270,104 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 00:31:14
合計ジャッジ時間 4,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int N, A[10];
string S;
set<int> st;

int main() {
  cin >> N >> S;
  if (N <= 3) {
    sort(S.begin(), S.end());
    do {
      //cout << S << endl;
      st.insert(stoi(S) % 120);
    } while (next_permutation(S.begin(), S.end()));
    cout << st.size() << endl;
    return 0;
  }
  for (int i = 0; i < N; i++) {
    A[S[i] - '0']++;
  }
  for (int a = 0; a <= 9; a++) {
    for (int b = 0; b <= 9; b++) {
      for (int c = 0; c <= 9; c++) {
        A[a]--, A[b]--, A[c]--;
        if (A[a] >= 0 && A[b] >= 0 && A[c] >= 0) {
          st.insert((c * 100 + b * 10 + a) % 40);
        }
        A[a]++, A[b]++, A[c]++;
      }
    }
  }
  cout << st.size() << endl;
  return 0;
}
0