結果

問題 No.1053 ゲーミング棒
ユーザー yakamotoyakamoto
提出日時 2020-05-15 21:40:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 2,607 bytes
コンパイル時間 14,208 ms
コンパイル使用メモリ 456,624 KB
実行使用メモリ 68,600 KB
最終ジャッジ日時 2024-09-19 09:22:24
合計ジャッジ時間 26,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
50,976 KB
testcase_01 AC 263 ms
50,884 KB
testcase_02 AC 273 ms
50,832 KB
testcase_03 AC 268 ms
51,024 KB
testcase_04 AC 274 ms
51,072 KB
testcase_05 AC 273 ms
51,036 KB
testcase_06 AC 273 ms
50,988 KB
testcase_07 AC 269 ms
50,956 KB
testcase_08 AC 273 ms
50,904 KB
testcase_09 AC 279 ms
50,988 KB
testcase_10 AC 268 ms
51,120 KB
testcase_11 AC 269 ms
51,036 KB
testcase_12 AC 273 ms
51,016 KB
testcase_13 AC 264 ms
50,924 KB
testcase_14 AC 265 ms
50,928 KB
testcase_15 AC 271 ms
51,024 KB
testcase_16 AC 271 ms
51,148 KB
testcase_17 AC 265 ms
50,896 KB
testcase_18 AC 268 ms
51,000 KB
testcase_19 AC 272 ms
50,756 KB
testcase_20 AC 268 ms
50,900 KB
testcase_21 AC 260 ms
50,992 KB
testcase_22 AC 266 ms
50,868 KB
testcase_23 AC 440 ms
68,044 KB
testcase_24 AC 470 ms
68,196 KB
testcase_25 AC 467 ms
68,600 KB
testcase_26 AC 459 ms
68,000 KB
testcase_27 AC 270 ms
50,896 KB
testcase_28 AC 265 ms
50,984 KB
testcase_29 AC 264 ms
50,860 KB
testcase_30 AC 374 ms
57,516 KB
testcase_31 AC 374 ms
57,576 KB
testcase_32 AC 377 ms
57,680 KB
testcase_33 AC 397 ms
57,604 KB
testcase_34 AC 409 ms
57,924 KB
testcase_35 AC 401 ms
58,232 KB
testcase_36 AC 404 ms
58,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val A = na(N)
    val G = mutableListOf<Int>()
    G += A[0]
    for (i in 1 until N) {
      if (A[i] != G.last()) G += A[i]
    }

    val all = G.distinct().size
    val ans = if (G.size == all) {
      0
    } else if (G.size > 1 && G.first() == G.last() && G.size - 1 == all){
      1
    } else {
      -1
    }
    out.println(ans)
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0