結果

問題 No.773 コンテスト
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-03-10 15:27:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 14,214 ms
コンパイル使用メモリ 409,252 KB
実行使用メモリ 53,472 KB
最終ジャッジ日時 2023-08-10 00:39:40
合計ジャッジ時間 23,568 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
52,896 KB
testcase_01 AC 339 ms
52,696 KB
testcase_02 AC 323 ms
52,848 KB
testcase_03 AC 325 ms
52,712 KB
testcase_04 AC 325 ms
52,788 KB
testcase_05 AC 326 ms
53,000 KB
testcase_06 AC 327 ms
52,896 KB
testcase_07 AC 324 ms
52,900 KB
testcase_08 AC 324 ms
53,472 KB
testcase_09 AC 329 ms
52,592 KB
testcase_10 AC 323 ms
53,012 KB
testcase_11 AC 315 ms
53,100 KB
testcase_12 AC 323 ms
52,596 KB
testcase_13 AC 322 ms
52,596 KB
testcase_14 AC 318 ms
52,912 KB
testcase_15 AC 313 ms
52,992 KB
testcase_16 AC 321 ms
52,920 KB
testcase_17 AC 321 ms
52,588 KB
testcase_18 AC 324 ms
52,676 KB
testcase_19 AC 329 ms
52,716 KB
testcase_20 AC 316 ms
52,584 KB
testcase_21 AC 320 ms
52,736 KB
testcase_22 AC 318 ms
53,348 KB
testcase_23 AC 321 ms
52,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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