結果

問題 No.773 コンテスト
ユーザー バカらっくバカらっく
提出日時 2022-02-14 17:05:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 11,749 ms
コンパイル使用メモリ 438,096 KB
実行使用メモリ 55,140 KB
最終ジャッジ日時 2024-06-29 06:51:30
合計ジャッジ時間 20,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
54,984 KB
testcase_01 AC 321 ms
55,008 KB
testcase_02 AC 323 ms
55,120 KB
testcase_03 AC 325 ms
55,008 KB
testcase_04 AC 322 ms
54,984 KB
testcase_05 AC 326 ms
55,064 KB
testcase_06 AC 326 ms
55,036 KB
testcase_07 AC 323 ms
54,928 KB
testcase_08 AC 325 ms
54,992 KB
testcase_09 AC 328 ms
54,912 KB
testcase_10 AC 324 ms
54,996 KB
testcase_11 AC 324 ms
55,108 KB
testcase_12 AC 320 ms
55,128 KB
testcase_13 AC 329 ms
55,028 KB
testcase_14 AC 331 ms
55,036 KB
testcase_15 AC 330 ms
55,068 KB
testcase_16 AC 327 ms
55,140 KB
testcase_17 AC 326 ms
54,892 KB
testcase_18 AC 326 ms
55,056 KB
testcase_19 AC 317 ms
54,892 KB
testcase_20 AC 319 ms
55,104 KB
testcase_21 AC 321 ms
55,100 KB
testcase_22 AC 321 ms
54,996 KB
testcase_23 AC 321 ms
54,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val a = listOf(23,24,25)
    val ab = readLine()!!.split(" ").map { it.toInt() }.let { (it[0]..it[1]) }
    println(a.count { it !in ab })
}
0