結果

問題 No.2260 Adic Sum
ユーザー 箱星箱星
提出日時 2023-04-07 21:48:12
言語 Kotlin
(1.9.23)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,952 KB
testcase_01 AC 284 ms
49,864 KB
testcase_02 AC 289 ms
50,040 KB
testcase_03 AC 291 ms
50,112 KB
testcase_04 AC 288 ms
49,948 KB
testcase_05 AC 291 ms
49,880 KB
testcase_06 AC 287 ms
50,000 KB
testcase_07 AC 287 ms
49,996 KB
testcase_08 AC 323 ms
50,940 KB
testcase_09 AC 307 ms
50,316 KB
testcase_10 AC 314 ms
50,736 KB
testcase_11 AC 286 ms
50,392 KB
testcase_12 AC 323 ms
51,292 KB
testcase_13 AC 314 ms
50,808 KB
testcase_14 AC 468 ms
59,356 KB
testcase_15 AC 475 ms
63,832 KB
testcase_16 AC 445 ms
58,260 KB
testcase_17 AC 522 ms
64,724 KB
testcase_18 AC 772 ms
98,932 KB
testcase_19 AC 789 ms
95,416 KB
testcase_20 AC 680 ms
92,980 KB
testcase_21 AC 686 ms
93,524 KB
testcase_22 AC 646 ms
95,452 KB
testcase_23 AC 615 ms
87,708 KB
testcase_24 AC 803 ms
92,676 KB
testcase_25 AC 500 ms
70,416 KB
testcase_26 AC 491 ms
70,236 KB
testcase_27 AC 506 ms
71,020 KB
testcase_28 AC 499 ms
70,224 KB
testcase_29 AC 523 ms
70,584 KB
testcase_30 AC 543 ms
73,384 KB
testcase_31 AC 773 ms
92,252 KB
testcase_32 AC 804 ms
92,468 KB
testcase_33 AC 540 ms
77,376 KB
testcase_34 AC 616 ms
92,248 KB
testcase_35 AC 907 ms
95,796 KB
権限があれば一括ダウンロードができます

ソースコード

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