結果
問題 | No.1223 I hate Golf |
ユーザー | rutilicus |
提出日時 | 2020-09-12 10:47:01 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 314 ms / 2,000 ms |
コード長 | 300 bytes |
コンパイル時間 | 14,055 ms |
コンパイル使用メモリ | 425,656 KB |
実行使用メモリ | 57,076 KB |
最終ジャッジ日時 | 2024-06-10 02:39:23 |
合計ジャッジ時間 | 18,482 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 305 ms
57,012 KB |
testcase_01 | AC | 303 ms
56,972 KB |
testcase_02 | AC | 306 ms
56,916 KB |
testcase_03 | AC | 306 ms
56,900 KB |
testcase_04 | AC | 306 ms
56,792 KB |
testcase_05 | AC | 306 ms
56,904 KB |
testcase_06 | AC | 306 ms
56,928 KB |
testcase_07 | AC | 314 ms
56,900 KB |
testcase_08 | AC | 301 ms
56,968 KB |
testcase_09 | AC | 301 ms
57,052 KB |
testcase_10 | AC | 303 ms
57,076 KB |
testcase_11 | AC | 310 ms
56,984 KB |
testcase_12 | AC | 305 ms
57,064 KB |
testcase_13 | AC | 302 ms
57,040 KB |
testcase_14 | AC | 308 ms
56,784 KB |
コンパイルメッセージ
Main.kt:8:13: warning: 'appendln(String?): 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(if ((abs(n) + k - 1L) / k <= t) "Yes" else "No") ^
ソースコード
import kotlin.math.abs fun main() { val builder = StringBuilder() val (n, k, t) = readInputLine().split(" ").map { it.toLong() } builder.appendln(if ((abs(n) + k - 1L) / k <= t) "Yes" else "No") print(builder.toString()) } fun readInputLine(): String { return readLine()!! }