結果

問題 No.243 出席番号(2)
ユーザー karinohitokarinohito
提出日時 2024-10-08 00:11:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 206,920 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 00:11:28
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 11 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 11 ms
5,248 KB
testcase_13 AC 21 ms
5,248 KB
testcase_14 AC 22 ms
5,248 KB
testcase_15 AC 22 ms
5,248 KB
testcase_16 AC 22 ms
5,248 KB
testcase_17 AC 21 ms
5,248 KB
testcase_18 AC 37 ms
5,248 KB
testcase_19 AC 37 ms
5,248 KB
testcase_20 AC 37 ms
5,248 KB
testcase_21 AC 37 ms
5,248 KB
testcase_22 AC 38 ms
5,248 KB
testcase_23 AC 56 ms
5,248 KB
testcase_24 AC 58 ms
5,248 KB
testcase_25 AC 58 ms
5,248 KB
testcase_26 AC 58 ms
5,248 KB
testcase_27 AC 64 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint=modint1000000007;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    ll N;
    cin>>N;
    vector<ll> A(N+1,0);
    for(int i=0;i<N;i++){
        ll a;
        cin>>a;
        A[min(a,N)]++;
    }
    vector<mint> DP(N+1,0);
    vector<mint> F(N+1,1);
    DP[0]=1;
    for(int i=0;i<N;i++){
        F[i+1]=F[i]*(i+1);
        vector<mint> NDP=DP;
        for(int j=0;j<N;j++){
            NDP[j+1]+=DP[j]*A[i];
        }
        swap(DP,NDP);
    }
    mint an=F[N];
    for(int i=1;i<=N;i++){
        an+=DP[i]*F[N-i]*(i%2?-1:1);
    }
    cout<<an.val()<<endl;

}
0