結果

問題 No.1223 I hate Golf
ユーザー face4face4
提出日時 2021-04-11 13:52:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 11,871 ms
コンパイル使用メモリ 432,624 KB
実行使用メモリ 52,020 KB
最終ジャッジ日時 2024-06-27 09:03:32
合計ジャッジ時間 17,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
51,548 KB
testcase_01 AC 303 ms
52,020 KB
testcase_02 AC 302 ms
51,768 KB
testcase_03 AC 302 ms
51,668 KB
testcase_04 AC 306 ms
51,804 KB
testcase_05 AC 307 ms
51,760 KB
testcase_06 AC 311 ms
51,872 KB
testcase_07 AC 305 ms
51,876 KB
testcase_08 AC 310 ms
51,924 KB
testcase_09 AC 306 ms
51,860 KB
testcase_10 AC 302 ms
51,908 KB
testcase_11 AC 296 ms
51,912 KB
testcase_12 AC 303 ms
51,920 KB
testcase_13 AC 301 ms
51,516 KB
testcase_14 AC 295 ms
51,808 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