結果

問題 No.1236 長針と短針
ユーザー rutilicusrutilicus
提出日時 2020-09-26 09:13:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 10,328 ms
コンパイル使用メモリ 442,728 KB
実行使用メモリ 55,228 KB
最終ジャッジ日時 2024-06-28 18:52:50
合計ジャッジ時間 17,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
54,816 KB
testcase_01 AC 290 ms
54,932 KB
testcase_02 AC 278 ms
54,928 KB
testcase_03 AC 296 ms
55,096 KB
testcase_04 AC 280 ms
54,848 KB
testcase_05 AC 287 ms
54,760 KB
testcase_06 AC 285 ms
55,112 KB
testcase_07 AC 291 ms
54,920 KB
testcase_08 AC 296 ms
54,932 KB
testcase_09 AC 286 ms
54,784 KB
testcase_10 AC 279 ms
54,832 KB
testcase_11 AC 282 ms
55,200 KB
testcase_12 AC 278 ms
55,052 KB
testcase_13 AC 280 ms
54,892 KB
testcase_14 AC 278 ms
54,928 KB
testcase_15 AC 291 ms
54,828 KB
testcase_16 AC 284 ms
55,228 KB
testcase_17 AC 283 ms
55,216 KB
testcase_18 AC 274 ms
55,040 KB
testcase_19 AC 289 ms
54,892 KB
testcase_20 AC 281 ms
55,136 KB
testcase_21 AC 273 ms
54,804 KB
testcase_22 AC 296 ms
55,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:42: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(ans)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val times = listOf(
        Triple(0, 0, 0),
        Triple(1, 5, 27),
        Triple(2, 10, 54),
        Triple(3, 16, 21),
        Triple(4, 21, 49),
        Triple(5, 27, 16),
        Triple(6, 32, 43),
        Triple(7, 38, 10),
        Triple(8, 43, 38),
        Triple(9, 49, 5),
        Triple(10, 54, 32)
    )

    var (a, b) = readInputLine().split(" ").map { it.toInt() }
    var c = 0

    a %= 12

    var ans = 0

    while (true) {
        if (times.contains(Triple(a, b, c))) {
            break
        }
        ans++
        c++
        if (c == 60) {
            b++
            c = 0
        }
        if (b == 60) {
            a++
            a %= 12
            b = 0
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

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