結果

問題 No.243 出席番号(2)
ユーザー titiatitia
提出日時 2022-08-09 04:10:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 13,941 ms
コンパイル使用メモリ 438,048 KB
実行使用メモリ 52,028 KB
最終ジャッジ日時 2024-09-19 11:49:36
合計ジャッジ時間 23,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
49,560 KB
testcase_01 AC 258 ms
49,568 KB
testcase_02 AC 254 ms
49,584 KB
testcase_03 AC 293 ms
49,864 KB
testcase_04 AC 276 ms
49,860 KB
testcase_05 AC 276 ms
50,008 KB
testcase_06 AC 272 ms
49,916 KB
testcase_07 AC 317 ms
50,140 KB
testcase_08 AC 328 ms
49,932 KB
testcase_09 AC 304 ms
49,948 KB
testcase_10 AC 301 ms
49,956 KB
testcase_11 AC 297 ms
50,116 KB
testcase_12 AC 318 ms
49,968 KB
testcase_13 AC 343 ms
50,236 KB
testcase_14 AC 327 ms
50,208 KB
testcase_15 AC 313 ms
50,172 KB
testcase_16 AC 312 ms
50,264 KB
testcase_17 AC 355 ms
50,436 KB
testcase_18 AC 360 ms
50,436 KB
testcase_19 AC 325 ms
50,236 KB
testcase_20 AC 312 ms
50,044 KB
testcase_21 AC 309 ms
50,080 KB
testcase_22 AC 442 ms
50,452 KB
testcase_23 AC 425 ms
51,896 KB
testcase_24 AC 361 ms
51,900 KB
testcase_25 AC 353 ms
52,028 KB
testcase_26 AC 346 ms
51,972 KB
testcase_27 AC 509 ms
51,772 KB
testcase_28 AC 258 ms
49,588 KB
testcase_29 AC 256 ms
49,604 KB
testcase_30 AC 255 ms
49,664 KB
testcase_31 AC 263 ms
49,704 KB
testcase_32 AC 257 ms
49,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val mod=1000000007
    val n = readLine()!!.toInt()
    val A = IntArray(n)

    for (i in 0..n-1){
        val x = readLine()!!.toInt()
        if (x<n){
            A[x]+=1
        }
    }

    val DP = LongArray(n+1){0}
    DP[0]=1

    for (v in A){
        if (v==0){
            continue
        }
        for (i in 0..n-1){
            var j=n-1-i
            DP[j+1]=(DP[j+1]+DP[j]*v)%mod
        }
    }

    var ANS=0.toLong()
    var fac=1.toLong()
    for (i in 0..n){
        if (i%2==0){
            ANS+=fac*DP[n-i]
            ANS%=mod}
        else{
            ANS-=fac*DP[n-i]}

        fac=fac*(i+1)%mod}

    if (n%2==1) {
        println((-ANS+mod) % mod)
    }
    else{
        println((ANS+mod)%mod)
    }
}
0