結果

問題 No.601 Midpoint Erase
ユーザー 💕💖💞💕💖💞
提出日時 2017-12-25 00:28:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 12,516 ms
コンパイル使用メモリ 441,076 KB
実行使用メモリ 89,740 KB
最終ジャッジ日時 2024-11-20 13:39:25
合計ジャッジ時間 25,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
57,044 KB
testcase_01 AC 336 ms
57,180 KB
testcase_02 AC 330 ms
56,944 KB
testcase_03 AC 677 ms
84,140 KB
testcase_04 AC 691 ms
88,148 KB
testcase_05 AC 644 ms
80,004 KB
testcase_06 AC 593 ms
69,380 KB
testcase_07 AC 687 ms
88,112 KB
testcase_08 AC 655 ms
82,080 KB
testcase_09 AC 687 ms
88,204 KB
testcase_10 AC 537 ms
65,096 KB
testcase_11 AC 754 ms
89,740 KB
testcase_12 AC 627 ms
77,852 KB
testcase_13 AC 326 ms
56,860 KB
testcase_14 AC 323 ms
56,976 KB
testcase_15 AC 323 ms
56,972 KB
testcase_16 AC 331 ms
57,180 KB
testcase_17 AC 324 ms
57,024 KB
testcase_18 AC 333 ms
57,036 KB
testcase_19 AC 323 ms
57,052 KB
testcase_20 AC 329 ms
57,112 KB
testcase_21 AC 329 ms
57,100 KB
testcase_22 AC 333 ms
57,112 KB
testcase_23 AC 323 ms
56,956 KB
testcase_24 AC 328 ms
56,936 KB
testcase_25 AC 333 ms
57,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  val map = mutableMapOf<Pair<Int,Int>, Int>()
  (1..n).map {
    val (a,b) = readLine()!!.split(" ").map { it.toInt()%2 }
    val pair = Pair(a,b)
    if( map.get(pair) == null)
      map[pair] = 0
    map[pair] = map[pair]!! + 1
  }
  val sum = map.values.map { it/2 }.sum()
  if( sum%2 == 0 )
    println("Bob")
  else
    println("Alice")
}
0