結果

問題 No.481 1から10
ユーザー komkomh
提出日時 2019-04-17 08:23:14
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 10,994 ms
コンパイル使用メモリ 429,088 KB
実行使用メモリ 51,976 KB
最終ジャッジ日時 2024-11-20 17:59:14
合計ジャッジ時間 15,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val b = readLine()!!.split(" ").map(String::toInt)
    for (i in (1..10)) {
        if (b.none { it == i }) {
            println(i)
        }
    }
}
0