結果
問題 | No.673 カブトムシ |
ユーザー | rutilicus |
提出日時 | 2020-12-20 11:25:29 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,224 bytes |
コンパイル時間 | 14,771 ms |
コンパイル使用メモリ | 439,684 KB |
実行使用メモリ | 56,932 KB |
最終ジャッジ日時 | 2024-09-21 11:38:55 |
合計ジャッジ時間 | 20,170 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 315 ms
56,892 KB |
testcase_03 | AC | 316 ms
56,716 KB |
testcase_04 | AC | 318 ms
56,660 KB |
testcase_05 | AC | 315 ms
56,716 KB |
testcase_06 | AC | 316 ms
56,592 KB |
testcase_07 | AC | 315 ms
56,796 KB |
testcase_08 | AC | 326 ms
56,732 KB |
testcase_09 | WA | - |
testcase_10 | AC | 320 ms
56,684 KB |
testcase_11 | AC | 318 ms
56,904 KB |
testcase_12 | AC | 317 ms
56,612 KB |
testcase_13 | AC | 318 ms
56,932 KB |
testcase_14 | AC | 313 ms
56,876 KB |
testcase_15 | AC | 317 ms
56,712 KB |
testcase_16 | AC | 314 ms
56,488 KB |
testcase_17 | AC | 324 ms
56,888 KB |
コンパイルメッセージ
Main.kt:9:17: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator. builder.appendln(b * d % mod) ^ Main.kt:13:17: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator. builder.appendln(((b % mod * numerator % mod * denominator % mod) + mod - (b % mod)) % mod) ^
ソースコード
fun main() { val builder = StringBuilder() val mod = 1000000007L val (b, c, d) = readInputLine().split(" ").map { it.toLong() } if (c == 1L) { builder.appendln(b * d % mod) } else { val numerator = (pow(c % mod, d + 1L, mod) + mod - 1L) % mod val denominator = modInv((c - 1L) % mod, mod) % mod builder.appendln(((b % mod * numerator % mod * denominator % mod) + mod - (b % mod)) % mod) } print(builder.toString()) } fun readInputLine(): String { return readLine()!! } // a^-1 mod mod fun modInv(a: Long, mod: Long): Long { var aLoc = a var b = mod var u = 1L var v = 0L while (b != 0L) { val t = aLoc / b aLoc -= t * b val swapTmpB = b b = aLoc aLoc = swapTmpB u -= t * v val swapTmpU = u u = v v = swapTmpU } u %= mod if (u < 0) { u += mod } return u } fun pow(x: Long, n: Long, mod: Long): Long { var ret = 1L var base = x var nTmp = n while (nTmp != 0L) { if (nTmp % 2L != 0L) { ret = ret * base % mod } base = base * base % mod nTmp /= 2L } return ret }