結果

問題 No.773 コンテスト
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-03-10 15:27:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 10,795 ms
コンパイル使用メモリ 424,740 KB
実行使用メモリ 52,052 KB
最終ジャッジ日時 2024-11-15 23:18:51
合計ジャッジ時間 19,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
51,948 KB
testcase_01 AC 324 ms
51,848 KB
testcase_02 AC 319 ms
51,936 KB
testcase_03 AC 319 ms
51,592 KB
testcase_04 AC 333 ms
51,856 KB
testcase_05 AC 327 ms
52,004 KB
testcase_06 AC 313 ms
51,948 KB
testcase_07 AC 318 ms
51,780 KB
testcase_08 AC 318 ms
51,676 KB
testcase_09 AC 315 ms
51,896 KB
testcase_10 AC 316 ms
51,676 KB
testcase_11 AC 316 ms
51,788 KB
testcase_12 AC 313 ms
51,876 KB
testcase_13 AC 316 ms
51,848 KB
testcase_14 AC 320 ms
51,856 KB
testcase_15 AC 317 ms
51,688 KB
testcase_16 AC 318 ms
51,740 KB
testcase_17 AC 323 ms
51,776 KB
testcase_18 AC 320 ms
51,872 KB
testcase_19 AC 315 ms
51,804 KB
testcase_20 AC 317 ms
51,788 KB
testcase_21 AC 314 ms
51,848 KB
testcase_22 AC 314 ms
51,852 KB
testcase_23 AC 314 ms
52,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a,b) = readLine()!!.split(' ').map { it.toInt() }
    println(3-(23..25).intersect(a..b).size)
}
0