結果

問題 No.1223 I hate Golf
ユーザー face4face4
提出日時 2021-04-11 13:52:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 14,140 ms
コンパイル使用メモリ 414,020 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2023-09-09 16:16:52
合計ジャッジ時間 19,558 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
52,692 KB
testcase_01 AC 285 ms
52,652 KB
testcase_02 AC 284 ms
54,652 KB
testcase_03 AC 283 ms
52,680 KB
testcase_04 AC 284 ms
52,768 KB
testcase_05 AC 284 ms
52,900 KB
testcase_06 AC 284 ms
52,996 KB
testcase_07 AC 288 ms
52,700 KB
testcase_08 AC 283 ms
52,544 KB
testcase_09 AC 282 ms
52,656 KB
testcase_10 AC 280 ms
52,892 KB
testcase_11 AC 281 ms
53,068 KB
testcase_12 AC 279 ms
52,880 KB
testcase_13 AC 278 ms
52,540 KB
testcase_14 AC 279 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.abs

fun main() {
    var (n, k, t) = readLine()!!.split(" ").map{it.toInt()}
    println(if((abs(n)+k-1)/k > t) "No" else "Yes")
}
0