結果
問題 | No.651 E869120 and Driving |
ユーザー | Pump0129 |
提出日時 | 2018-03-30 12:16:10 |
言語 | Kotlin (1.9.23) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 10,378 ms |
コンパイル使用メモリ | 421,380 KB |
実行使用メモリ | 55,324 KB |
最終ジャッジ日時 | 2024-11-20 15:13:54 |
合計ジャッジ時間 | 14,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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>) { ^
ソースコード
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)) }