結果

問題 No.296 n度寝
ユーザー FoltaFolta
提出日時 2019-05-27 16:43:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 1,000 ms
コード長 216 bytes
コンパイル時間 11,502 ms
コンパイル使用メモリ 436,124 KB
実行使用メモリ 57,044 KB
最終ジャッジ日時 2024-11-20 18:40:18
合計ジャッジ時間 17,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
57,044 KB
testcase_01 AC 315 ms
56,976 KB
testcase_02 AC 316 ms
56,880 KB
testcase_03 AC 315 ms
56,904 KB
testcase_04 AC 316 ms
56,884 KB
testcase_05 AC 312 ms
56,852 KB
testcase_06 AC 316 ms
56,860 KB
testcase_07 AC 315 ms
56,944 KB
testcase_08 AC 313 ms
56,860 KB
testcase_09 AC 315 ms
56,888 KB
testcase_10 AC 313 ms
56,864 KB
testcase_11 AC 311 ms
56,876 KB
testcase_12 AC 313 ms
56,872 KB
testcase_13 AC 318 ms
56,884 KB
testcase_14 AC 319 ms
56,948 KB
testcase_15 AC 317 ms
57,016 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