結果

問題 No.118 門松列(2)
ユーザー バカらっくバカらっく
提出日時 2019-10-02 03:08:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 11,692 ms
コンパイル使用メモリ 447,776 KB
実行使用メモリ 71,456 KB
最終ジャッジ日時 2024-10-03 05:50:28
合計ジャッジ時間 25,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 370 ms
60,880 KB
testcase_01 AC 558 ms
71,364 KB
testcase_02 AC 577 ms
71,368 KB
testcase_03 AC 585 ms
71,388 KB
testcase_04 AC 572 ms
71,456 KB
testcase_05 AC 565 ms
71,376 KB
testcase_06 AC 294 ms
60,372 KB
testcase_07 AC 296 ms
60,364 KB
testcase_08 AC 289 ms
60,520 KB
testcase_09 AC 559 ms
71,312 KB
testcase_10 AC 458 ms
63,352 KB
testcase_11 AC 449 ms
63,352 KB
testcase_12 AC 432 ms
63,528 KB
testcase_13 AC 439 ms
63,436 KB
testcase_14 AC 571 ms
69,484 KB
testcase_15 AC 350 ms
61,232 KB
testcase_16 AC 543 ms
67,264 KB
testcase_17 AC 441 ms
63,448 KB
testcase_18 AC 462 ms
63,476 KB
testcase_19 AC 514 ms
67,324 KB
testcase_20 AC 525 ms
67,208 KB
testcase_21 AC 549 ms
69,440 KB
testcase_22 AC 450 ms
63,340 KB
testcase_23 AC 553 ms
69,168 KB
testcase_24 AC 476 ms
63,588 KB
testcase_25 AC 515 ms
67,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:2:9: warning: variable 'itemCount' is never used
    val itemCount = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val itemCount = readLine()!!.toInt()
    val items = readLine()!!.split(" ").map { it.toInt() }.let { a-> a.toSet().sorted().map { b-> b to a.count { it == b } } }.toMap()
    val keys = items.keys.toList()
    val count = items.keys.map { 0 }.toTypedArray()
    val mod = 1000000000 + 7
    for(i in keys.indices) {
        if(i == 0) {
            count[0] = items[keys[0]]!!
        } else {
            count[i] = count[i-1] + items[keys[i]]!!
        }
    }

    var ans = 0L
    for(i in (0..keys.lastIndex - 2)) {
        for(j in (i+1..keys.lastIndex - 1)) {
            val remain = (count.last() - count[j]).toLong()
            var ptn = items[keys[i]]!!.toLong() * items[keys[j]]!!.toLong()
            ptn = ptn % mod
            ptn *= remain
            ptn = ptn % mod
            ans += ptn
            ans = ans % mod
        }
    }
    println(ans)

}

0