結果

問題 No.652 E869120 and TimeZone
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-26 04:51:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 337 ms / 1,000 ms
コード長 451 bytes
コンパイル時間 11,766 ms
コンパイル使用メモリ 437,440 KB
実行使用メモリ 52,576 KB
最終ジャッジ日時 2024-06-11 12:26:10
合計ジャッジ時間 24,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
52,336 KB
testcase_01 AC 310 ms
52,468 KB
testcase_02 AC 308 ms
52,332 KB
testcase_03 AC 315 ms
52,352 KB
testcase_04 AC 308 ms
52,260 KB
testcase_05 AC 328 ms
52,452 KB
testcase_06 AC 314 ms
52,292 KB
testcase_07 AC 307 ms
52,476 KB
testcase_08 AC 312 ms
52,460 KB
testcase_09 AC 307 ms
52,492 KB
testcase_10 AC 311 ms
52,304 KB
testcase_11 AC 320 ms
52,176 KB
testcase_12 AC 320 ms
52,456 KB
testcase_13 AC 337 ms
52,452 KB
testcase_14 AC 313 ms
52,576 KB
testcase_15 AC 304 ms
52,332 KB
testcase_16 AC 316 ms
52,184 KB
testcase_17 AC 332 ms
52,076 KB
testcase_18 AC 296 ms
52,188 KB
testcase_19 AC 315 ms
52,180 KB
testcase_20 AC 312 ms
52,432 KB
testcase_21 AC 304 ms
52,440 KB
testcase_22 AC 304 ms
52,332 KB
testcase_23 AC 311 ms
52,444 KB
testcase_24 AC 307 ms
52,460 KB
testcase_25 AC 304 ms
52,200 KB
testcase_26 AC 319 ms
52,372 KB
testcase_27 AC 307 ms
52,300 KB
testcase_28 AC 313 ms
52,336 KB
testcase_29 AC 314 ms
52,412 KB
testcase_30 AC 312 ms
52,572 KB
testcase_31 AC 316 ms
52,388 KB
testcase_32 AC 311 ms
52,176 KB
testcase_33 AC 303 ms
52,476 KB
testcase_34 AC 323 ms
52,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:13:27: warning: the expression is unused
  when( m > 0 ) { true -> null; else -> { m += 60; h-=1 } }
                          ^
Main.kt:14: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

  m += Math.round((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

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