結果

問題 No.573 a^2[i] = a[i]
ユーザー titiatitia
提出日時 2024-05-10 03:48:34
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 14,507 ms
コンパイル使用メモリ 434,540 KB
実行使用メモリ 56,476 KB
最終ジャッジ日時 2024-05-10 03:49:10
合計ジャッジ時間 31,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
56,232 KB
testcase_01 AC 341 ms
56,160 KB
testcase_02 AC 359 ms
56,216 KB
testcase_03 AC 336 ms
56,168 KB
testcase_04 AC 334 ms
56,060 KB
testcase_05 AC 337 ms
56,316 KB
testcase_06 AC 342 ms
56,064 KB
testcase_07 AC 338 ms
56,136 KB
testcase_08 AC 338 ms
56,288 KB
testcase_09 AC 358 ms
56,060 KB
testcase_10 AC 337 ms
56,216 KB
testcase_11 AC 332 ms
56,128 KB
testcase_12 AC 359 ms
56,384 KB
testcase_13 AC 331 ms
56,180 KB
testcase_14 AC 331 ms
56,220 KB
testcase_15 AC 337 ms
56,184 KB
testcase_16 AC 353 ms
56,408 KB
testcase_17 AC 342 ms
56,032 KB
testcase_18 AC 335 ms
56,332 KB
testcase_19 AC 344 ms
56,300 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.pow

fun main() {
    val mod = 1_000_000_007L
    val n = readLine()!!.toInt()

    val fact = LongArray(2 * 10.0.pow(5).toInt() + 1) { 1L }
    for (i in 1 until fact.size) {
        fact[i] = fact[i - 1] * i % mod
    }

    val factInv = LongArray(fact.size) { i ->
        if (i == fact.lastIndex) fact.last().modPow(mod - 2, mod)
        else 0L
    }
    for (i in fact.lastIndex - 1 downTo 0) {
        factInv[i] = factInv[i + 1] * (i + 1) % mod
    }

    fun combi(a: Int, b: Int): Long {
        return if (0 <= b && b <= a) {
            fact[a] * factInv[b] % mod * factInv[a - b] % mod
        } else {
            0L
        }
    }

    var ans = 0L
    for (i in 1..n) {
        ans = (ans + combi(n, i) * i.toDouble().pow((n - i).toDouble()).toLong() % mod) % mod
    }

    println(ans)
}

private fun Long.modPow(exponent: Long, modulus: Long): Long {
    var result = 1L
    var exp = exponent
    var base = this % modulus
    while (exp > 0) {
        if (exp and 1 == 1L) {
            result = (result * base) % modulus
        }
        base = (base * base) % modulus
        exp = exp shr 1
    }
    return result
}
0