結果
問題 | No.2593 Reorder and Mod 120 |
ユーザー |
![]() |
提出日時 | 2023-12-21 11:26:34 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,015 bytes |
コンパイル時間 | 3,016 ms |
コンパイル使用メモリ | 253,932 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 10:57:02 |
合計ジャッジ時間 | 3,983 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 26 |
ソースコード
#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; }