結果

問題 No.2203 POWER!!!!!
ユーザー 箱星箱星
提出日時 2022-08-30 03:23:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 11,648 ms
コンパイル使用メモリ 439,268 KB
実行使用メモリ 73,476 KB
最終ジャッジ日時 2024-07-02 18:43:27
合計ジャッジ時間 21,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
51,616 KB
testcase_01 AC 313 ms
51,624 KB
testcase_02 AC 314 ms
51,492 KB
testcase_03 AC 314 ms
51,700 KB
testcase_04 AC 314 ms
51,592 KB
testcase_05 AC 316 ms
51,688 KB
testcase_06 AC 319 ms
51,532 KB
testcase_07 AC 318 ms
51,684 KB
testcase_08 AC 414 ms
54,292 KB
testcase_09 AC 489 ms
60,344 KB
testcase_10 AC 524 ms
65,216 KB
testcase_11 AC 535 ms
70,852 KB
testcase_12 AC 416 ms
54,184 KB
testcase_13 AC 543 ms
73,476 KB
testcase_14 AC 537 ms
73,344 KB
testcase_15 AC 536 ms
73,256 KB
testcase_16 AC 538 ms
73,208 KB
testcase_17 AC 539 ms
73,360 KB
testcase_18 AC 315 ms
51,612 KB
testcase_19 AC 313 ms
51,500 KB
testcase_20 AC 316 ms
51,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:9: warning: variable 'n' is never used
    val n = readInt()
        ^

ソースコード

diff #

fun pow(a: Int, b: Int): Long {
    var ret = 1L
    repeat(b) {
        ret *= a
    }
    return ret
}

fun main() {
    val n = readInt()
    val a = readInts()
    val counter = Array(9) { 0L }
    for (v in a) {
        counter[v]++
    }
    var ans = 0L
    for (b in 1..8) {
        for (e in 1..8) {
            ans += counter[b] * counter[e] * pow(b, e)
        }
    }
    println(ans)
}

fun readInt() = readln().toInt()
fun readInts() = readln().split(" ").map { it.toInt() }
0