結果

問題 No.481 1から10
ユーザー da_louisda_louis
提出日時 2020-02-07 01:02:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 10,443 ms
コンパイル使用メモリ 428,012 KB
実行使用メモリ 57,116 KB
最終ジャッジ日時 2024-09-25 07:08:52
合計ジャッジ時間 14,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,780 KB
testcase_01 AC 305 ms
56,964 KB
testcase_02 AC 308 ms
57,012 KB
testcase_03 AC 310 ms
56,784 KB
testcase_04 AC 309 ms
56,996 KB
testcase_05 AC 304 ms
56,736 KB
testcase_06 AC 305 ms
57,116 KB
testcase_07 AC 305 ms
56,792 KB
testcase_08 AC 305 ms
56,928 KB
testcase_09 AC 305 ms
57,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p481()
}

fun p481() {
    val bList = readLine()!!.split(' ').map { it.toInt() }.toSet()

    val answer = (1..10).firstOrNull { it !in bList } ?: error("なんで?")

    println(answer)
}
0