結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
57,100 KB
testcase_01 AC 320 ms
56,972 KB
testcase_02 AC 323 ms
57,064 KB
testcase_03 AC 615 ms
71,756 KB
testcase_04 AC 611 ms
76,056 KB
testcase_05 AC 628 ms
76,088 KB
testcase_06 AC 621 ms
76,212 KB
testcase_07 AC 570 ms
67,820 KB
testcase_08 AC 573 ms
67,904 KB
testcase_09 AC 613 ms
76,132 KB
testcase_10 AC 575 ms
67,996 KB
testcase_11 AC 465 ms
59,688 KB
testcase_12 AC 589 ms
69,936 KB
testcase_13 AC 645 ms
76,132 KB
testcase_14 AC 542 ms
63,548 KB
testcase_15 AC 578 ms
67,932 KB
testcase_16 AC 593 ms
71,876 KB
testcase_17 AC 632 ms
74,028 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 323 ms
56,964 KB
testcase_21 AC 324 ms
57,052 KB
testcase_22 AC 326 ms
57,088 KB
testcase_23 AC 607 ms
80,224 KB
testcase_24 AC 555 ms
65,592 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