結果

問題 No.1343 Dividing Digit
ユーザー 箱星箱星
提出日時 2021-01-16 14:22:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 12,762 ms
コンパイル使用メモリ 435,680 KB
実行使用メモリ 66,080 KB
最終ジャッジ日時 2024-11-27 15:46:32
合計ジャッジ時間 24,052 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
57,720 KB
testcase_01 AC 271 ms
57,660 KB
testcase_02 AC 291 ms
57,880 KB
testcase_03 AC 413 ms
65,816 KB
testcase_04 AC 331 ms
60,140 KB
testcase_05 AC 399 ms
60,584 KB
testcase_06 AC 353 ms
60,424 KB
testcase_07 AC 395 ms
62,520 KB
testcase_08 AC 399 ms
64,664 KB
testcase_09 AC 392 ms
64,780 KB
testcase_10 AC 339 ms
60,436 KB
testcase_11 AC 388 ms
62,588 KB
testcase_12 AC 447 ms
63,528 KB
testcase_13 AC 471 ms
63,376 KB
testcase_14 AC 331 ms
60,180 KB
testcase_15 AC 389 ms
60,484 KB
testcase_16 AC 344 ms
60,168 KB
testcase_17 AC 461 ms
64,964 KB
testcase_18 AC 409 ms
65,932 KB
testcase_19 AC 388 ms
63,348 KB
testcase_20 AC 381 ms
62,612 KB
testcase_21 AC 404 ms
64,732 KB
testcase_22 AC 411 ms
64,996 KB
testcase_23 AC 411 ms
66,080 KB
testcase_24 AC 410 ms
63,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val k = nextInt()
    val a = Array(n) { nextInt() }
    val r = a.sum().toLong()
    var pow = 1L
    var ans = 0L
    for (i in n - 1 downTo 0) {
        ans += a[i] * pow
        ans %= r
        pow *= k
        pow %= r
    }
    println(ans)
}

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

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

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()
// endregion
0