結果

問題 No.651 E869120 and Driving
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-06 11:22:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 10,347 ms
コンパイル使用メモリ 431,080 KB
実行使用メモリ 56,880 KB
最終ジャッジ日時 2024-11-20 13:54:25
合計ジャッジ時間 14,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
56,744 KB
testcase_01 AC 298 ms
56,852 KB
testcase_02 AC 308 ms
56,720 KB
testcase_03 AC 303 ms
56,784 KB
testcase_04 AC 309 ms
56,768 KB
testcase_05 AC 314 ms
56,568 KB
testcase_06 AC 314 ms
56,880 KB
testcase_07 AC 317 ms
56,632 KB
testcase_08 AC 306 ms
56,636 KB
testcase_09 AC 304 ms
56,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val speed = 100/60.0

  val dist = readLine()!!.toInt()
  val hour = dist/(60*speed).toInt()
  val min  = ( ( dist - hour * ((60*speed).toInt()) ) / speed ).toInt()
  println("${((10 + hour)%24).toString().padStart(2, '0')}:${min.toString().padStart(2, '0')}")
}
0