結果

問題 No.723 2つの数の和
ユーザー kajikaji
提出日時 2018-09-22 19:45:34
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 11,735 ms
コンパイル使用メモリ 434,308 KB
実行使用メモリ 74,832 KB
最終ジャッジ日時 2024-11-20 16:48:45
合計ジャッジ時間 26,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
51,760 KB
testcase_01 AC 321 ms
51,660 KB
testcase_02 AC 321 ms
52,096 KB
testcase_03 AC 626 ms
67,608 KB
testcase_04 AC 625 ms
71,016 KB
testcase_05 AC 626 ms
69,812 KB
testcase_06 AC 608 ms
70,308 KB
testcase_07 AC 572 ms
62,176 KB
testcase_08 AC 572 ms
62,784 KB
testcase_09 AC 631 ms
71,284 KB
testcase_10 AC 581 ms
61,572 KB
testcase_11 AC 466 ms
54,124 KB
testcase_12 AC 584 ms
64,676 KB
testcase_13 AC 607 ms
71,588 KB
testcase_14 AC 523 ms
58,968 KB
testcase_15 AC 554 ms
62,128 KB
testcase_16 AC 559 ms
65,976 KB
testcase_17 AC 597 ms
69,504 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 323 ms
51,908 KB
testcase_21 AC 325 ms
51,776 KB
testcase_22 AC 316 ms
51,760 KB
testcase_23 AC 577 ms
74,832 KB
testcase_24 AC 501 ms
60,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:18: warning: 'sumBy((T) -> Int): Int' is deprecated. Use sumOf instead.
    println(nums.sumBy { numCounts[X - it] ?: 0 })
                 ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (_, X) = readLine()!!.split(" ").map(String::toInt)
    val nums = readLine()!!.split(" ").map(String::toInt)
    val numCounts = nums.groupingBy { it }.eachCount()

    println(nums.sumBy { numCounts[X - it] ?: 0 })
}
0