結果

問題 No.296 n度寝
ユーザー FoltaFolta
提出日時 2019-05-27 16:43:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 309 ms / 1,000 ms
コード長 216 bytes
コンパイル時間 9,246 ms
コンパイル使用メモリ 429,532 KB
実行使用メモリ 57,032 KB
最終ジャッジ日時 2024-04-30 20:49:40
合計ジャッジ時間 14,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
56,944 KB
testcase_01 AC 272 ms
57,004 KB
testcase_02 AC 268 ms
56,848 KB
testcase_03 AC 263 ms
56,992 KB
testcase_04 AC 264 ms
56,928 KB
testcase_05 AC 309 ms
56,972 KB
testcase_06 AC 267 ms
56,924 KB
testcase_07 AC 273 ms
57,004 KB
testcase_08 AC 286 ms
57,032 KB
testcase_09 AC 298 ms
56,804 KB
testcase_10 AC 284 ms
56,988 KB
testcase_11 AC 279 ms
57,024 KB
testcase_12 AC 284 ms
56,944 KB
testcase_13 AC 300 ms
56,812 KB
testcase_14 AC 291 ms
56,940 KB
testcase_15 AC 294 ms
56,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.time.LocalTime
fun main(){
    val (n,h,m,t) = readLine()!!.split(" ").map(String::toInt)
	val time  = LocalTime.of(h,m,0).plusMinutes(((n-1)*t).toLong())
    println(time.hour)
    println(time.minute)
}
0