結果
問題 | No.734 Careful Engineer |
ユーザー | rutilicus |
提出日時 | 2021-02-21 23:52:25 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 399 bytes |
コンパイル時間 | 13,020 ms |
コンパイル使用メモリ | 427,072 KB |
実行使用メモリ | 56,960 KB |
最終ジャッジ日時 | 2024-09-19 20:24:41 |
合計ジャッジ時間 | 16,029 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 275 ms
56,744 KB |
testcase_01 | AC | 268 ms
56,656 KB |
testcase_02 | WA | - |
testcase_03 | AC | 272 ms
56,608 KB |
testcase_04 | AC | 270 ms
56,664 KB |
testcase_05 | AC | 273 ms
56,688 KB |
testcase_06 | AC | 268 ms
56,780 KB |
testcase_07 | AC | 274 ms
56,960 KB |
testcase_08 | AC | 276 ms
56,924 KB |
testcase_09 | AC | 279 ms
56,776 KB |
testcase_10 | AC | 269 ms
56,712 KB |
testcase_11 | WA | - |
testcase_12 | AC | 275 ms
56,932 KB |
testcase_13 | AC | 276 ms
56,920 KB |
ソースコード
fun main() { val builder = StringBuilder() val (a, b, c) = readInputLine().split(" ").map { it.toLong() } val divisor = 60 * a - b if (divisor <= 0L || divisor > 3600L * c) { builder.appendLine(-1) } else { builder.appendLine((3600 * c + (divisor - 1L)) / divisor) } print(builder.toString()) } fun readInputLine(): String { return readLine()!! }