結果

問題 No.2593 Reorder and Mod 120
ユーザー yansi819
提出日時 2024-04-04 18:53:38
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 4,443 ms
コンパイル使用メモリ 258,584 KB
最終ジャッジ日時 2025-02-20 20:07:51
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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