結果

問題 No.1564 Sum of Products of Pairs
ユーザー fukafukatanifukafukatani
提出日時 2021-07-13 23:06:40
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 317 bytes
コンパイル時間 12,677 ms
コンパイル使用メモリ 265,036 KB
実行使用メモリ 122,648 KB
最終ジャッジ日時 2024-07-02 18:25:25
合計ジャッジ時間 67,941 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 984 ms
64,448 KB
testcase_01 AC 990 ms
64,464 KB
testcase_02 AC 988 ms
64,228 KB
testcase_03 AC 1,802 ms
92,856 KB
testcase_04 AC 1,315 ms
70,652 KB
testcase_05 AC 1,924 ms
102,072 KB
testcase_06 AC 1,778 ms
96,836 KB
testcase_07 AC 1,589 ms
83,992 KB
testcase_08 AC 1,442 ms
74,668 KB
testcase_09 AC 1,631 ms
87,688 KB
testcase_10 AC 1,959 ms
110,704 KB
testcase_11 AC 1,984 ms
113,836 KB
testcase_12 AC 1,811 ms
96,868 KB
testcase_13 AC 990 ms
64,408 KB
testcase_14 AC 985 ms
64,440 KB
testcase_15 AC 996 ms
64,476 KB
testcase_16 AC 986 ms
64,212 KB
testcase_17 AC 983 ms
64,632 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 996 ms
64,384 KB
testcase_29 AC 1,004 ms
64,312 KB
testcase_30 AC 997 ms
64,484 KB
testcase_31 AC 997 ms
64,356 KB
testcase_32 AC 988 ms
64,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val n = sc.nextInt
  val p = Array.fill(2 * n)(sc.nextLong).sorted
  val e = p.zipWithIndex.filter(_._2 % 2 == 0).map(_._1)
  val o = p.zipWithIndex.filter(_._2 % 2 == 1).map(_._1)
  val ans = e.zip(o).map(p => p._1 * p._2).sum
  println(ans)
}
0