結果

問題 No.2260 Adic Sum
ユーザー 箱星
提出日時 2023-04-07 21:48:12
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 907 ms / 2,000 ms
コード長 1,202 bytes
コンパイル時間 15,403 ms
コンパイル使用メモリ 440,980 KB
実行使用メモリ 98,932 KB
最終ジャッジ日時 2024-10-06 07:15:42
合計ジャッジ時間 32,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val p = nextLong()
    val a = Array(n) { nextLong() }
    var ans = 0L
    var pow = p
    while (true) {
        val counter = mutableMapOf<Long, Long>()
        for (v in a) {
            counter[v % pow] = (counter[v % pow] ?: 0) + 1
        }
        for (v in counter.values) {
            ans += v * (v - 1) / 2
        }
        pow *= p
        if (pow > 1000000000L) break
    }
    println(ans)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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