結果

問題 No.296 n度寝
ユーザー da_louisda_louis
提出日時 2020-02-11 23:53:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 10,128 ms
コンパイル使用メモリ 439,376 KB
実行使用メモリ 51,832 KB
最終ジャッジ日時 2024-10-01 12:30:43
合計ジャッジ時間 15,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
51,740 KB
testcase_01 AC 263 ms
51,576 KB
testcase_02 AC 265 ms
51,460 KB
testcase_03 AC 274 ms
51,652 KB
testcase_04 AC 287 ms
51,512 KB
testcase_05 AC 292 ms
51,528 KB
testcase_06 AC 279 ms
51,528 KB
testcase_07 AC 293 ms
51,588 KB
testcase_08 AC 283 ms
51,636 KB
testcase_09 AC 264 ms
51,536 KB
testcase_10 AC 277 ms
51,764 KB
testcase_11 AC 267 ms
51,728 KB
testcase_12 AC 269 ms
51,832 KB
testcase_13 AC 264 ms
51,660 KB
testcase_14 AC 270 ms
51,644 KB
testcase_15 AC 282 ms
51,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:13:9: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
        appendln(newH)
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    p296()
}

fun p296() {
    val (n, h, m, interval) = readLine()!!.split(' ').map { it.toLong() }

    val add = interval * (n - 1)
    val newH = (h + (add / 60) + (if (m + (add % 60) >= 60) 1 else 0)) % 24
    val newM = (m + (add % 60)) % 60

    val answer = buildString {
        appendln(newH)
        append(newM)
    }

    println(answer)
}
0