結果

問題 No.7 プライムナンバーゲーム
ユーザー tmino5263tmino5263
提出日時 2019-08-01 10:58:40
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 13,870 ms
コンパイル使用メモリ 263,028 KB
実行使用メモリ 67,216 KB
最終ジャッジ日時 2024-07-02 15:45:29
合計ジャッジ時間 33,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
64,648 KB
testcase_01 AC 956 ms
64,888 KB
testcase_02 AC 1,159 ms
65,304 KB
testcase_03 WA -
testcase_04 AC 996 ms
65,156 KB
testcase_05 WA -
testcase_06 AC 1,143 ms
65,788 KB
testcase_07 AC 1,075 ms
65,336 KB
testcase_08 AC 1,057 ms
65,044 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,101 ms
65,736 KB
testcase_12 AC 1,175 ms
65,432 KB
testcase_13 AC 1,104 ms
65,180 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,146 ms
65,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object PrimeNumberGame extends App {
  val N = io.StdIn.readInt()
  val primeNumbers = sieve(Seq.range(2, N), Seq.empty)
  println(s"${if((N - primeNumbers.last) < 2) "Lose" else "Win"}")

  def sieve(numbers: Seq[Int], result: Seq[Int]): Seq[Int] = {
    if(numbers.length == 1) result :+ numbers.head else sieve(numbers.filter(_ % numbers.head != 0), result :+ numbers.head)
  }
}
0