結果
| 問題 |
No.2593 Reorder and Mod 120
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-04 18:49:33 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 794 bytes |
| コンパイル時間 | 4,351 ms |
| コンパイル使用メモリ | 256,632 KB |
| 最終ジャッジ日時 | 2025-02-20 20:07:33 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 25 WA * 1 |
ソースコード
#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) {
do {
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;
}