結果

問題 No.178 美しいWhitespace (1)
ユーザー 💕💖💞💕💖💞
提出日時 2018-07-24 22:11:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 11,075 ms
コンパイル使用メモリ 444,032 KB
実行使用メモリ 57,492 KB
最終ジャッジ日時 2024-11-20 16:34:35
合計ジャッジ時間 20,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
57,040 KB
testcase_01 AC 289 ms
57,024 KB
testcase_02 AC 295 ms
57,100 KB
testcase_03 AC 290 ms
57,164 KB
testcase_04 AC 357 ms
57,360 KB
testcase_05 AC 367 ms
57,452 KB
testcase_06 AC 353 ms
57,400 KB
testcase_07 AC 352 ms
57,456 KB
testcase_08 AC 355 ms
57,472 KB
testcase_09 AC 345 ms
57,436 KB
testcase_10 AC 345 ms
57,352 KB
testcase_11 AC 359 ms
57,480 KB
testcase_12 AC 347 ms
57,452 KB
testcase_13 AC 344 ms
57,484 KB
testcase_14 AC 342 ms
57,400 KB
testcase_15 AC 331 ms
57,356 KB
testcase_16 AC 340 ms
57,340 KB
testcase_17 AC 338 ms
57,480 KB
testcase_18 AC 334 ms
57,456 KB
testcase_19 AC 351 ms
57,416 KB
testcase_20 AC 345 ms
57,488 KB
testcase_21 AC 332 ms
57,336 KB
testcase_22 AC 330 ms
57,492 KB
testcase_23 AC 360 ms
57,448 KB
testcase_24 AC 356 ms
57,332 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