結果

問題 No.159 刺さらないUSB
ユーザー 826814741_6826814741_6
提出日時 2019-01-05 15:12:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 1,000 ms
コード長 185 bytes
コンパイル時間 11,396 ms
コンパイル使用メモリ 437,936 KB
実行使用メモリ 51,860 KB
最終ジャッジ日時 2024-07-02 00:14:01
合計ジャッジ時間 18,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
51,560 KB
testcase_01 AC 315 ms
51,664 KB
testcase_02 AC 313 ms
51,840 KB
testcase_03 AC 313 ms
51,564 KB
testcase_04 AC 313 ms
51,676 KB
testcase_05 AC 313 ms
51,764 KB
testcase_06 AC 317 ms
51,696 KB
testcase_07 AC 314 ms
51,792 KB
testcase_08 AC 316 ms
51,708 KB
testcase_09 AC 314 ms
51,592 KB
testcase_10 AC 312 ms
51,700 KB
testcase_11 AC 315 ms
51,716 KB
testcase_12 AC 317 ms
51,564 KB
testcase_13 AC 314 ms
51,680 KB
testcase_14 AC 317 ms
51,860 KB
testcase_15 AC 320 ms
51,804 KB
testcase_16 AC 315 ms
51,564 KB
testcase_17 AC 312 ms
51,852 KB
testcase_18 AC 314 ms
51,832 KB
testcase_19 AC 312 ms
51,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun f(p: Float, q: Float): Boolean = p*(2-q)-1>0

fun main(args: Array<String>) {
    val (p,q) = readLine()!!.split(' ').map(String::toFloat)
    println(if (f(p,q)) "YES" else "NO")
}
0