結果
問題 | No.70 睡眠の重要性! |
ユーザー | minokasago |
提出日時 | 2019-10-31 20:17:25 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 11,568 ms |
コンパイル使用メモリ | 427,872 KB |
実行使用メモリ | 60,344 KB |
最終ジャッジ日時 | 2024-09-14 22:10:03 |
合計ジャッジ時間 | 14,539 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 348 ms
56,164 KB |
testcase_01 | AC | 352 ms
56,036 KB |
testcase_02 | AC | 357 ms
56,052 KB |
testcase_03 | AC | 357 ms
55,908 KB |
testcase_04 | AC | 359 ms
55,820 KB |
testcase_05 | WA | - |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) ^
ソースコード
fun main(args: Array<String>) { val n = readLine()!!.toInt() var sum = 0 repeat(n) { var hm: List<Int> = readLine()!!.split(" ", ":").map { it.toInt() } if (hm[0] > hm[2]) sum += 24 * 60 sum += hm[2] * 60 + hm[3] - hm[0] * 60 - hm[1] } println("${sum}") }