結果

問題 No.1395 Less Sweet Alchemy
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-02-14 21:40:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 14,461 ms
コンパイル使用メモリ 433,372 KB
実行使用メモリ 51,852 KB
最終ジャッジ日時 2024-07-22 09:08:13
合計ジャッジ時間 19,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
51,752 KB
testcase_01 AC 334 ms
51,620 KB
testcase_02 AC 314 ms
51,736 KB
testcase_03 AC 327 ms
51,616 KB
testcase_04 AC 328 ms
51,520 KB
testcase_05 AC 320 ms
51,656 KB
testcase_06 AC 328 ms
51,852 KB
testcase_07 AC 322 ms
51,744 KB
testcase_08 AC 327 ms
51,656 KB
testcase_09 AC 325 ms
51,652 KB
testcase_10 AC 322 ms
51,812 KB
testcase_11 AC 322 ms
51,676 KB
testcase_12 AC 322 ms
51,704 KB
testcase_13 AC 321 ms
51,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^
Main.kt:2:10: warning: variable 'N' is never used
    val (N, X) = readLine()!!.split(" ").map{it.toInt()}
         ^
Main.kt:4:30: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    println(if (X in (C.min()!!..C.max()!!)) "Yes" else "No")
                             ^
Main.kt:4:41: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    println(if (X in (C.min()!!..C.max()!!)) "Yes" else "No")
                                        ^

ソースコード

diff #

fun main(args:Array<String>){
    val (N, X) = readLine()!!.split(" ").map{it.toInt()}
    val C = readLine()!!.split(" ").map{it.toInt()}
    println(if (X in (C.min()!!..C.max()!!)) "Yes" else "No")
}
0