結果

問題 No.1468 Colourful Pastel
ユーザー yumechiyumechi
提出日時 2021-04-08 02:36:23
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 545 bytes
コンパイル時間 11,028 ms
コンパイル使用メモリ 268,680 KB
実行使用メモリ 88,692 KB
最終ジャッジ日時 2024-06-23 06:30:40
合計ジャッジ時間 40,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 892 ms
67,372 KB
testcase_03 AC 897 ms
67,164 KB
testcase_04 AC 903 ms
67,636 KB
testcase_05 AC 871 ms
66,936 KB
testcase_06 AC 901 ms
67,236 KB
testcase_07 AC 875 ms
66,936 KB
testcase_08 AC 889 ms
67,308 KB
testcase_09 AC 940 ms
67,152 KB
testcase_10 AC 906 ms
67,296 KB
testcase_11 AC 892 ms
67,204 KB
testcase_12 AC 888 ms
67,124 KB
testcase_13 AC 888 ms
67,024 KB
testcase_14 AC 890 ms
67,176 KB
testcase_15 AC 919 ms
67,520 KB
testcase_16 AC 880 ms
66,928 KB
testcase_17 AC 884 ms
67,108 KB
testcase_18 TLE -
testcase_19 AC 954 ms
67,176 KB
testcase_20 AC 883 ms
67,028 KB
testcase_21 AC 895 ms
67,004 KB
testcase_22 AC 887 ms
67,384 KB
testcase_23 AC 900 ms
67,148 KB
testcase_24 AC 889 ms
67,368 KB
testcase_25 AC 879 ms
67,396 KB
testcase_26 AC 913 ms
67,104 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt

  def makeMap(): Map[String, Int] = {
    Map(
      "Red" -> 0,
      "Orange" -> 0,
      "Yellow" -> 0,
      "Green" -> 0,
      "Cyan" -> 0,
      "Blue" -> 0,
      "Violet" -> 0,
    )
  }

  var a = makeMap()
  for(col <- Array.fill(n)(sc.next)) {
    val t = a(col) + 1
    a += col -> t
  }
  for(col <- Array.fill(n - 1)(sc.next)) {
    val t = a(col) + 1
    a += col -> t
  }

  println(a.keys.filter(a(_) % 2 == 1).head)
}
0