結果

問題 No.178 美しいWhitespace (1)
ユーザー 💕💖💞💕💖💞
提出日時 2018-07-24 22:11:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 10,619 ms
コンパイル使用メモリ 444,572 KB
実行使用メモリ 57,548 KB
最終ジャッジ日時 2024-04-30 19:03:44
合計ジャッジ時間 19,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
56,932 KB
testcase_01 AC 273 ms
56,992 KB
testcase_02 AC 274 ms
57,016 KB
testcase_03 AC 268 ms
56,912 KB
testcase_04 AC 321 ms
57,412 KB
testcase_05 AC 326 ms
57,368 KB
testcase_06 AC 317 ms
57,424 KB
testcase_07 AC 337 ms
57,440 KB
testcase_08 AC 319 ms
57,540 KB
testcase_09 AC 315 ms
57,412 KB
testcase_10 AC 319 ms
57,400 KB
testcase_11 AC 328 ms
57,332 KB
testcase_12 AC 320 ms
57,424 KB
testcase_13 AC 335 ms
57,336 KB
testcase_14 AC 346 ms
57,332 KB
testcase_15 AC 343 ms
57,456 KB
testcase_16 AC 346 ms
57,432 KB
testcase_17 AC 358 ms
57,416 KB
testcase_18 AC 341 ms
57,532 KB
testcase_19 AC 339 ms
57,400 KB
testcase_20 AC 327 ms
57,376 KB
testcase_21 AC 331 ms
57,400 KB
testcase_22 AC 316 ms
57,312 KB
testcase_23 AC 329 ms
57,548 KB
testcase_24 AC 329 ms
57,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:8:24: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
  val min = sizes.min()!!
                       ^
Main.kt:10:25: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
  val max = deltas.max()!!
                        ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  val sizes = (1..n).map {
    val (a, b) = readLine()!!.split(" ").map(String::toLong)
    a+4L*b
  }

  val min = sizes.min()!!
  val deltas = sizes.map { it - min }
  val max = deltas.max()!!
  val deltas2 = deltas.map { max - it }
  when {
    deltas2.any { it%2L != 0L } -> -1L
    else -> {
      deltas2.sum()/2L
    }
  }.run(::println)
}
0