結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-05 23:36:49
言語 Scala(Beta)
(3.6.2)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 323 bytes
コンパイル時間 8,876 ms
コンパイル使用メモリ 259,572 KB
実行使用メモリ 64,928 KB
最終ジャッジ日時 2024-07-01 05:42:02
合計ジャッジ時間 40,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
63,928 KB
testcase_01 AC 902 ms
63,784 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 896 ms
63,808 KB
testcase_12 MLE -
testcase_13 AC 898 ms
63,748 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 897 ms
63,780 KB
testcase_17 AC 892 ms
63,832 KB
testcase_18 MLE -
testcase_19 AC 893 ms
63,896 KB
testcase_20 AC 894 ms
63,908 KB
testcase_21 MLE -
testcase_22 AC 899 ms
63,912 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 AC 892 ms
63,844 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 897 ms
63,812 KB
testcase_31 MLE -
testcase_32 AC 891 ms
63,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Q211 {
  def main(args: Array[String]): Unit = {
    val k = io.StdIn.readLine().toInt

    val primes = Seq(2, 3, 5, 7, 11, 13)
    val composites = Seq(4, 6, 8, 9, 10, 12)
    val numer = (for (prime <- primes; composite <- composites) yield prime * composite).count(_ == k)
    println(numer.toDouble / 36)
  }
}
0