結果

問題 No.652 E869120 and TimeZone
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-06 23:46:56
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 11,077 ms
コンパイル使用メモリ 432,156 KB
実行使用メモリ 57,100 KB
最終ジャッジ日時 2024-11-20 14:00:46
合計ジャッジ時間 21,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
56,932 KB
testcase_01 AC 268 ms
56,892 KB
testcase_02 AC 268 ms
56,996 KB
testcase_03 AC 271 ms
56,688 KB
testcase_04 WA -
testcase_05 AC 269 ms
56,820 KB
testcase_06 AC 270 ms
56,800 KB
testcase_07 AC 269 ms
56,696 KB
testcase_08 AC 279 ms
56,696 KB
testcase_09 AC 266 ms
57,020 KB
testcase_10 AC 262 ms
56,772 KB
testcase_11 AC 263 ms
57,096 KB
testcase_12 AC 265 ms
56,924 KB
testcase_13 WA -
testcase_14 AC 262 ms
56,936 KB
testcase_15 AC 266 ms
56,780 KB
testcase_16 AC 264 ms
56,720 KB
testcase_17 AC 261 ms
56,888 KB
testcase_18 AC 269 ms
56,692 KB
testcase_19 AC 266 ms
56,992 KB
testcase_20 AC 264 ms
56,980 KB
testcase_21 AC 273 ms
56,992 KB
testcase_22 AC 273 ms
56,748 KB
testcase_23 AC 268 ms
56,828 KB
testcase_24 AC 268 ms
56,820 KB
testcase_25 AC 280 ms
56,888 KB
testcase_26 AC 270 ms
56,880 KB
testcase_27 AC 282 ms
56,996 KB
testcase_28 AC 266 ms
56,716 KB
testcase_29 AC 259 ms
56,852 KB
testcase_30 AC 266 ms
56,868 KB
testcase_31 AC 265 ms
56,824 KB
testcase_32 AC 272 ms
56,816 KB
testcase_33 AC 278 ms
56,708 KB
testcase_34 AC 283 ms
57,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val inputs = readLine()!!.split(" ")
  val hour = inputs[0].toInt()
  val min = inputs[1].toInt()
  val delta = 9.0 - inputs[2].replace("UTC", "").toDouble()

  val base_min = hour*60 + min

  val delta_min = delta * 60

  val next_mins = (base_min - delta_min).toInt() + 24*60

  val next_hour = next_mins  / 60 % 24
  val next_min  = next_mins  % 60
  //println("${hour} ${min} ${delta}")
  println("${next_hour.toString().padStart(2, '0')}:${next_min.toString().padStart(2, '0')}")
}
0