結果

問題 No.810 割った余りの個数
ユーザー kabekabe
提出日時 2019-04-15 00:36:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 926 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 10,773 ms
コンパイル使用メモリ 253,592 KB
実行使用メモリ 64,852 KB
最終ジャッジ日時 2024-07-01 23:09:35
合計ジャッジ時間 37,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 900 ms
64,820 KB
testcase_01 AC 893 ms
64,580 KB
testcase_02 AC 900 ms
64,760 KB
testcase_03 AC 892 ms
64,704 KB
testcase_04 AC 903 ms
64,616 KB
testcase_05 AC 894 ms
64,776 KB
testcase_06 AC 897 ms
64,492 KB
testcase_07 AC 900 ms
64,624 KB
testcase_08 AC 901 ms
64,592 KB
testcase_09 AC 891 ms
64,740 KB
testcase_10 AC 896 ms
64,660 KB
testcase_11 AC 900 ms
64,640 KB
testcase_12 AC 892 ms
64,632 KB
testcase_13 AC 896 ms
64,852 KB
testcase_14 AC 900 ms
64,852 KB
testcase_15 AC 907 ms
64,568 KB
testcase_16 AC 895 ms
64,728 KB
testcase_17 AC 900 ms
64,644 KB
testcase_18 AC 926 ms
64,828 KB
testcase_19 AC 900 ms
64,812 KB
testcase_20 AC 895 ms
64,748 KB
testcase_21 AC 897 ms
64,720 KB
testcase_22 AC 903 ms
64,692 KB
testcase_23 AC 908 ms
64,704 KB
testcase_24 AC 901 ms
64,548 KB
testcase_25 AC 900 ms
64,764 KB
testcase_26 AC 904 ms
64,820 KB
testcase_27 AC 887 ms
64,780 KB
testcase_28 AC 891 ms
64,684 KB
testcase_29 AC 898 ms
64,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn
import scala.math.min

object Main extends App {
    val (l, r, m) = StdIn.readLine().split(' ') match {
        case Array(l, r, m) => (l.toInt, r.toInt, m.toInt)
    }
    println(min(m, r - (l - 1)))
}
0