結果

問題 No.651 E869120 and Driving
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-06 11:22:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 8,940 ms
コンパイル使用メモリ 430,724 KB
実行使用メモリ 56,864 KB
最終ジャッジ日時 2024-04-30 16:59:18
合計ジャッジ時間 12,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
56,752 KB
testcase_01 AC 266 ms
56,756 KB
testcase_02 AC 275 ms
56,820 KB
testcase_03 AC 261 ms
56,736 KB
testcase_04 AC 263 ms
56,840 KB
testcase_05 AC 265 ms
56,740 KB
testcase_06 AC 265 ms
56,864 KB
testcase_07 AC 267 ms
56,796 KB
testcase_08 AC 256 ms
56,792 KB
testcase_09 AC 257 ms
56,808 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