結果

問題 No.723 2つの数の和
ユーザー 💕💖💞💕💖💞
提出日時 2018-08-04 12:17:58
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 12,904 ms
コンパイル使用メモリ 436,388 KB
実行使用メモリ 103,696 KB
最終ジャッジ日時 2024-11-20 16:38:33
合計ジャッジ時間 28,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
56,768 KB
testcase_01 AC 319 ms
56,912 KB
testcase_02 AC 321 ms
57,080 KB
testcase_03 AC 684 ms
84,412 KB
testcase_04 AC 749 ms
95,340 KB
testcase_05 AC 730 ms
93,476 KB
testcase_06 AC 748 ms
95,444 KB
testcase_07 AC 611 ms
74,260 KB
testcase_08 AC 616 ms
76,332 KB
testcase_09 AC 743 ms
93,448 KB
testcase_10 AC 611 ms
74,344 KB
testcase_11 AC 485 ms
61,876 KB
testcase_12 AC 624 ms
78,116 KB
testcase_13 AC 720 ms
91,304 KB
testcase_14 AC 565 ms
67,972 KB
testcase_15 AC 606 ms
74,164 KB
testcase_16 AC 640 ms
80,288 KB
testcase_17 AC 715 ms
95,448 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 328 ms
56,964 KB
testcase_21 AC 324 ms
57,076 KB
testcase_22 AC 323 ms
57,056 KB
testcase_23 AC 753 ms
103,696 KB
testcase_24 AC 591 ms
70,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:2:8: warning: variable 'n' is never used
  val (n, x) = readLine()!!.split(" ").map(String::toInt)
       ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (n, x) = readLine()!!.split(" ").map(String::toInt)
  val xs = readLine()!!.split(" ").map(String::toInt)
  val freq = xs.groupBy { it }.map { (k,vs) -> Pair(k, vs.size) }.toMap()
  val sets = xs.toSet()
  val keys = mutableListOf<Pair<Int,Int>>()
  for( s in sets.toList() ) {
    if( sets.contains(x-s) ) keys.add( Pair(s, x-s) )
  }
  keys.toList().map { (k, v) ->
   freq[k]!!*freq[v]!!
  }.sum().run(::println)
}
0