結果

問題 No.7 プライムナンバーゲーム
ユーザー rutilicusrutilicus
提出日時 2020-09-02 21:21:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 767 bytes
コンパイル時間 12,097 ms
コンパイル使用メモリ 439,896 KB
実行使用メモリ 55,520 KB
最終ジャッジ日時 2024-10-01 16:39:54
合計ジャッジ時間 18,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
54,716 KB
testcase_01 AC 281 ms
54,996 KB
testcase_02 AC 339 ms
55,520 KB
testcase_03 AC 304 ms
51,536 KB
testcase_04 AC 283 ms
50,936 KB
testcase_05 AC 286 ms
51,244 KB
testcase_06 AC 331 ms
51,588 KB
testcase_07 AC 327 ms
51,796 KB
testcase_08 AC 314 ms
51,708 KB
testcase_09 AC 332 ms
51,588 KB
testcase_10 AC 281 ms
50,988 KB
testcase_11 AC 323 ms
51,464 KB
testcase_12 AC 337 ms
51,752 KB
testcase_13 AC 344 ms
51,720 KB
testcase_14 AC 350 ms
51,956 KB
testcase_15 AC 349 ms
51,788 KB
testcase_16 AC 349 ms
51,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:30:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(if (wins[n]) "Win" else "Lose")
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val isPrime = BooleanArray(n + 1) { true }
    val wins = BooleanArray(n + 1) { false }
    val primeSet = mutableSetOf<Int>()

    wins[0] = true
    wins[1] = true
    isPrime[0] = false
    isPrime[1] = false

    for (i in 2..n) {
        if (isPrime[i]) {
            primeSet.add(i)
            for (j in i * 2..n step i) {
                isPrime[j] = false
            }
        }
        for (p in primeSet) {
            if (!wins[i - p]) {
                wins[i] = true
                break
            }
        }
    }

    builder.appendln(if (wins[n]) "Win" else "Lose")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0