結果

問題 No.810 割った余りの個数
ユーザー kabekabe
提出日時 2019-04-15 00:05:08
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 194 bytes
コンパイル時間 8,390 ms
コンパイル使用メモリ 264,056 KB
実行使用メモリ 267,656 KB
最終ジャッジ日時 2024-07-01 23:08:38
合計ジャッジ時間 32,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 914 ms
65,412 KB
testcase_01 AC 917 ms
65,340 KB
testcase_02 AC 915 ms
65,156 KB
testcase_03 AC 918 ms
65,212 KB
testcase_04 AC 916 ms
64,976 KB
testcase_05 AC 925 ms
65,560 KB
testcase_06 AC 927 ms
65,444 KB
testcase_07 AC 916 ms
65,396 KB
testcase_08 AC 912 ms
65,244 KB
testcase_09 AC 920 ms
65,268 KB
testcase_10 AC 913 ms
65,252 KB
testcase_11 AC 921 ms
65,348 KB
testcase_12 AC 925 ms
65,268 KB
testcase_13 AC 923 ms
65,440 KB
testcase_14 AC 913 ms
65,168 KB
testcase_15 AC 908 ms
65,140 KB
testcase_16 AC 918 ms
65,096 KB
testcase_17 AC 926 ms
65,268 KB
testcase_18 AC 922 ms
65,232 KB
testcase_19 AC 925 ms
63,728 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
    val (l, r, m) = scala.io.StdIn.readLine().split(' ') match { case Array(l, r, m) => (l.toInt, r.toInt, m.toInt) }
    println((l to r).map(i => i % m).toSet.size)
}
0