結果

問題 No.296 n度寝
ユーザー rutilicusrutilicus
提出日時 2020-08-30 22:07:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 327 ms / 1,000 ms
コード長 318 bytes
コンパイル時間 13,182 ms
コンパイル使用メモリ 437,180 KB
実行使用メモリ 52,044 KB
最終ジャッジ日時 2024-11-15 15:39:48
合計ジャッジ時間 18,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
51,916 KB
testcase_01 AC 326 ms
51,956 KB
testcase_02 AC 323 ms
51,732 KB
testcase_03 AC 321 ms
51,836 KB
testcase_04 AC 324 ms
51,688 KB
testcase_05 AC 316 ms
51,752 KB
testcase_06 AC 325 ms
51,676 KB
testcase_07 AC 326 ms
51,680 KB
testcase_08 AC 321 ms
51,768 KB
testcase_09 AC 321 ms
51,776 KB
testcase_10 AC 321 ms
52,044 KB
testcase_11 AC 322 ms
51,592 KB
testcase_12 AC 327 ms
51,880 KB
testcase_13 AC 325 ms
51,768 KB
testcase_14 AC 321 ms
51,812 KB
testcase_15 AC 323 ms
51,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:13: warning: 'appendln(Int): 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.
    builder.appendln(time / 60 % 24)
            ^
Main.kt:9:13: warning: 'appendln(Int): 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.
    builder.appendln(time % 60)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val (n, h, m, t) = readInputLine().split(" ").map { it.toInt() }

    val time = h * 60 + m + t * (n - 1)

    builder.appendln(time / 60 % 24)
    builder.appendln(time % 60)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0