結果

問題 No.70 睡眠の重要性!
ユーザー バカらっくバカらっく
提出日時 2019-09-23 04:48:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 13,183 ms
コンパイル使用メモリ 433,788 KB
実行使用メモリ 52,140 KB
最終ジャッジ日時 2024-09-19 04:12:03
合計ジャッジ時間 12,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
52,140 KB
testcase_01 AC 288 ms
51,884 KB
testcase_02 AC 295 ms
52,044 KB
testcase_03 AC 290 ms
51,944 KB
testcase_04 AC 284 ms
52,060 KB
testcase_05 AC 288 ms
51,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val dayCount = readLine()!!.toInt()
    val ans = (1..dayCount).map { readLine()!!.split(" ").map { it.split(":").map { it.toInt() }.let { it[0]*60+it[1] } }.let { it[1] - it[0] } }.map { if (it >= 0) it else it+(60*24) }
    println(ans.sum())
}

0