結果

問題 No.651 E869120 and Driving
ユーザー ichibanshiboriichibanshibori
提出日時 2018-04-29 19:25:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 1,000 ms
コード長 173 bytes
コンパイル時間 10,173 ms
コンパイル使用メモリ 429,288 KB
実行使用メモリ 55,332 KB
最終ジャッジ日時 2024-11-20 15:52:02
合計ジャッジ時間 13,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
55,068 KB
testcase_01 AC 325 ms
55,204 KB
testcase_02 AC 317 ms
55,068 KB
testcase_03 AC 326 ms
55,280 KB
testcase_04 AC 327 ms
55,116 KB
testcase_05 AC 310 ms
55,176 KB
testcase_06 AC 315 ms
55,168 KB
testcase_07 AC 318 ms
55,096 KB
testcase_08 AC 322 ms
55,280 KB
testcase_09 AC 314 ms
55,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

fun main(args : Array<String>) {
	val S = (readLine() ?: "").toInt()
	val m = S * 60 / 100
	val (gh, gm) = Pair(10 + m / 60, m % 60)
	
	println("%02d:%02d".format(gh, gm))
}
0