結果
問題 | No.118 門松列(2) |
ユーザー | m1025o1184t |
提出日時 | 2019-12-02 04:31:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 1,668 ms |
コンパイル使用メモリ | 170,244 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-22 08:18:03 |
合計ジャッジ時間 | 71,427 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 3 ms
9,984 KB |
testcase_07 | AC | 3 ms
9,984 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | TLE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | TLE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | TLE | - |
testcase_22 | RE | - |
testcase_23 | TLE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; const int mod = 1000000007; int C[500][500]; void comb() { C[0][0] = 1; for (int i = 0; i <= 400; ++i) { for (int j = 0; j <=i; ++j) { C[i + 1][j] += C[i][j] % mod; C[i + 1][j + 1] += C[i][j] % mod; } } } int main() { int n; cin >> n; vector<int> A(n); rep(i, n) cin >> A[i]; comb(); vector<int> res = A; auto result = unique(res.begin(), res.end()); res.erase(result, res.end()); if (res.size() == A.size()) { int ans = C[n][3] % mod; cout << ans << endl; return 0; } int sol = 1; for (int i = 0; i < res.size(); ++i) { int k = count(A.begin(), A.end(), res[i]); sol *= k; sol %= mod; } int ans2 = C[res.size()][3] * sol % mod; cout << ans2 << endl; return 0; }