結果

問題 No.651 E869120 and Driving
ユーザー Pump0129Pump0129
提出日時 2018-03-30 12:16:10
言語 Kotlin
(1.9.23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 243 bytes
コンパイル時間 8,897 ms
コンパイル使用メモリ 428,356 KB
実行使用メモリ 55,452 KB
最終ジャッジ日時 2024-04-30 17:56:17
合計ジャッジ時間 12,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val time = readLine()!!.toInt()
    val hour = time / 100
    val minute = (time % 100) / 10 * 6
    println(String.format("%02d:%02d\n", 10 + hour, minute))
}
0