結果

問題 No.651 E869120 and Driving
ユーザー ichibanshiboriichibanshibori
提出日時 2018-04-29 19:25:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 355 ms / 1,000 ms
コード長 173 bytes
コンパイル時間 10,772 ms
コンパイル使用メモリ 428,132 KB
実行使用メモリ 55,252 KB
最終ジャッジ日時 2024-04-30 18:26:18
合計ジャッジ時間 14,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
55,144 KB
testcase_01 AC 347 ms
55,144 KB
testcase_02 AC 350 ms
55,140 KB
testcase_03 AC 355 ms
55,108 KB
testcase_04 AC 351 ms
55,048 KB
testcase_05 AC 347 ms
55,148 KB
testcase_06 AC 353 ms
55,112 KB
testcase_07 AC 347 ms
55,252 KB
testcase_08 AC 348 ms
55,164 KB
testcase_09 AC 347 ms
55,136 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