結果

問題 No.773 コンテスト
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-03-10 15:27:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 11,521 ms
コンパイル使用メモリ 430,460 KB
実行使用メモリ 57,168 KB
最終ジャッジ日時 2024-04-27 18:39:25
合計ジャッジ時間 20,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,880 KB
testcase_01 AC 317 ms
56,888 KB
testcase_02 AC 317 ms
57,000 KB
testcase_03 AC 314 ms
57,004 KB
testcase_04 AC 323 ms
57,160 KB
testcase_05 AC 325 ms
57,092 KB
testcase_06 AC 317 ms
57,000 KB
testcase_07 AC 321 ms
57,056 KB
testcase_08 AC 319 ms
56,868 KB
testcase_09 AC 320 ms
57,156 KB
testcase_10 AC 321 ms
56,972 KB
testcase_11 AC 326 ms
57,124 KB
testcase_12 AC 316 ms
57,028 KB
testcase_13 AC 316 ms
57,000 KB
testcase_14 AC 324 ms
56,996 KB
testcase_15 AC 319 ms
57,124 KB
testcase_16 AC 317 ms
56,884 KB
testcase_17 AC 321 ms
57,168 KB
testcase_18 AC 320 ms
57,080 KB
testcase_19 AC 324 ms
57,164 KB
testcase_20 AC 320 ms
56,928 KB
testcase_21 AC 317 ms
57,080 KB
testcase_22 AC 316 ms
57,068 KB
testcase_23 AC 329 ms
56,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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