結果

問題 No.1161 Many Powers
ユーザー 箱星箱星
提出日時 2020-08-19 18:04:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 12,591 ms
コンパイル使用メモリ 433,224 KB
実行使用メモリ 56,916 KB
最終ジャッジ日時 2024-10-12 05:07:30
合計ジャッジ時間 22,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
49,768 KB
testcase_01 AC 289 ms
49,652 KB
testcase_02 AC 287 ms
49,756 KB
testcase_03 AC 289 ms
49,772 KB
testcase_04 AC 287 ms
51,720 KB
testcase_05 AC 297 ms
50,252 KB
testcase_06 AC 293 ms
49,840 KB
testcase_07 AC 288 ms
51,396 KB
testcase_08 AC 348 ms
52,496 KB
testcase_09 AC 344 ms
52,236 KB
testcase_10 AC 315 ms
50,612 KB
testcase_11 AC 332 ms
51,472 KB
testcase_12 AC 309 ms
50,732 KB
testcase_13 AC 363 ms
52,444 KB
testcase_14 AC 411 ms
54,500 KB
testcase_15 AC 397 ms
53,728 KB
testcase_16 AC 418 ms
54,936 KB
testcase_17 AC 385 ms
53,332 KB
testcase_18 AC 348 ms
51,828 KB
testcase_19 AC 321 ms
51,064 KB
testcase_20 AC 418 ms
56,916 KB
testcase_21 AC 322 ms
52,680 KB
testcase_22 AC 417 ms
55,304 KB
testcase_23 AC 285 ms
49,620 KB
testcase_24 AC 284 ms
49,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val a = sc.nextLong()
    val b = sc.nextLong()
    val c = sc.nextInt()
    val arr = Array(c) { 0L }
    for (i in 1 until c) {
        arr[i] = modpow(i.toLong(), b, c)
    }
    val sum = Array(c + 1) { 0L }
    for (i in 0 until c) {
        sum[i + 1] = sum[i] + arr[i]
    }
    var ans = sum[c] * (a / c) % c + sum[((a + 1) % c).toInt()]
    ans %= c
    println(ans)
}

fun modpow(a:Long, b:Long, c:Int): Long {
    if (b == 0L) return if (a % c == 0L) 0 else 1
    if (b == 1L) return a % c
    val p = modpow(a, b / 2, c)
    val pp = p * p % c
    return if (b % 2 == 0L) pp else pp * a % c
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve(FastScanner(System.`in`))
    writer.flush()
}

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    fun next(): String {
        while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())

        return st.nextToken()
    }

    fun nextInt() = next().toInt()
    fun nextLong() = next().toLong()
    fun nextLine() = br.readLine()
    fun nextDouble() = next().toDouble()
    fun ready() = br.ready()
}
0