結果

問題 No.734 Careful Engineer
ユーザー rutilicusrutilicus
提出日時 2021-02-21 23:56:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 10,807 ms
コンパイル使用メモリ 434,632 KB
実行使用メモリ 57,008 KB
最終ジャッジ日時 2024-09-19 20:27:44
合計ジャッジ時間 15,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
56,948 KB
testcase_01 AC 284 ms
56,880 KB
testcase_02 AC 285 ms
56,872 KB
testcase_03 AC 281 ms
56,952 KB
testcase_04 AC 283 ms
56,952 KB
testcase_05 AC 282 ms
57,008 KB
testcase_06 AC 280 ms
56,892 KB
testcase_07 AC 282 ms
56,892 KB
testcase_08 AC 286 ms
56,940 KB
testcase_09 AC 288 ms
56,860 KB
testcase_10 AC 282 ms
56,764 KB
testcase_11 AC 287 ms
56,948 KB
testcase_12 AC 286 ms
56,880 KB
testcase_13 AC 284 ms
56,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val (a, b, c) = readInputLine().split(" ").map { it.toLong() }
    val divisor = 60 * a - b

    if (divisor <= 0L) {
        builder.appendLine(-1)
    } else {
        builder.appendLine((3600 * c + (divisor - 1L)) / divisor)
    }

    print(builder.toString())
}

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