結果

問題 No.7 プライムナンバーゲーム
ユーザー komkomhkomkomh
提出日時 2019-04-26 13:21:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,025 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 14,421 ms
コンパイル使用メモリ 432,524 KB
実行使用メモリ 152,044 KB
最終ジャッジ日時 2024-10-01 16:21:58
合計ジャッジ時間 24,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
54,948 KB
testcase_01 AC 309 ms
56,772 KB
testcase_02 AC 1,025 ms
152,044 KB
testcase_03 AC 591 ms
83,448 KB
testcase_04 AC 479 ms
60,500 KB
testcase_05 AC 458 ms
59,924 KB
testcase_06 AC 600 ms
102,960 KB
testcase_07 AC 540 ms
95,544 KB
testcase_08 AC 571 ms
85,520 KB
testcase_09 AC 675 ms
115,984 KB
testcase_10 AC 297 ms
51,288 KB
testcase_11 AC 539 ms
95,476 KB
testcase_12 AC 855 ms
132,344 KB
testcase_13 AC 870 ms
136,072 KB
testcase_14 AC 1,006 ms
151,604 KB
testcase_15 AC 999 ms
147,168 KB
testcase_16 AC 935 ms
145,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val n = readLine()!!.toInt()

    val primeNumbers: List<Int> = (2..n).filter { isPrimeNumber(it) }
    val cache: MutableMap<Int, Boolean> = mutableMapOf()

    fun isWin(currentNumber: Int): Boolean {
        if (!cache.contains(currentNumber)) {
            val result = primeNumbers
                .filter { it < currentNumber }
                .map { currentNumber - it }
                .filter { it > 1 }
                .any { !isWin(it) }
            cache.put(currentNumber, result)
        }
        return cache.get(currentNumber)!!
    }

    when (isWin(n)) {
        true -> println("Win")
        false -> println("Lose")
    }
}

fun isPrimeNumber(n: Int): Boolean = !(2 until n).any { n % it == 0 }

0