結果

問題 No.652 E869120 and TimeZone
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-26 04:45:20
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 12,408 ms
コンパイル使用メモリ 440,872 KB
実行使用メモリ 57,768 KB
最終ジャッジ日時 2024-11-20 16:27:09
合計ジャッジ時間 26,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
52,264 KB
testcase_01 AC 357 ms
52,156 KB
testcase_02 WA -
testcase_03 AC 358 ms
52,412 KB
testcase_04 AC 356 ms
52,272 KB
testcase_05 AC 354 ms
52,572 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 353 ms
52,228 KB
testcase_09 AC 355 ms
52,296 KB
testcase_10 AC 355 ms
52,624 KB
testcase_11 AC 353 ms
52,132 KB
testcase_12 AC 352 ms
52,332 KB
testcase_13 WA -
testcase_14 AC 354 ms
52,272 KB
testcase_15 AC 350 ms
52,288 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 356 ms
52,388 KB
testcase_19 AC 358 ms
52,624 KB
testcase_20 AC 354 ms
52,236 KB
testcase_21 WA -
testcase_22 AC 352 ms
52,624 KB
testcase_23 AC 356 ms
52,488 KB
testcase_24 WA -
testcase_25 AC 351 ms
52,308 KB
testcase_26 AC 351 ms
52,332 KB
testcase_27 AC 351 ms
52,396 KB
testcase_28 AC 351 ms
52,400 KB
testcase_29 WA -
testcase_30 AC 351 ms
52,276 KB
testcase_31 AC 348 ms
52,132 KB
testcase_32 AC 351 ms
52,344 KB
testcase_33 AC 353 ms
52,268 KB
testcase_34 AC 352 ms
52,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:14:27: warning: the expression is unused
  when( m > 0 ) { true -> null; else -> { m += 60; h-=1 } }
                          ^
Main.kt:15:27: warning: the expression is unused
  when( h > 0 ) { true -> null; else -> { h += 24 } }
                          ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (a,b,c) = readLine()!!.split(" ")

  var h = a.toInt()
  var m = b.toInt()
  val delta = c.replace("UTC", "").toDouble() - 9

  h += delta.toInt()
  h = h % 24

  //println(delta)
  m += ((delta - delta.toInt().toDouble())*60).toInt()

  when( m > 0 ) { true -> null; else -> { m += 60; h-=1 } }
  when( h > 0 ) { true -> null; else -> { h += 24 } }

  h += m/60
  m = m%60
  println("%02d:%02d".format(h, m))
}
0