結果
問題 | No.2 素因数ゲーム |
ユーザー | バカらっく |
提出日時 | 2019-08-24 06:49:10 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,112 bytes |
コンパイル時間 | 15,662 ms |
コンパイル使用メモリ | 442,920 KB |
実行使用メモリ | 289,984 KB |
最終ジャッジ日時 | 2024-11-20 19:21:29 |
合計ジャッジ時間 | 41,289 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 317 ms
57,016 KB |
testcase_01 | AC | 316 ms
56,948 KB |
testcase_02 | AC | 331 ms
60,336 KB |
testcase_03 | AC | 335 ms
60,424 KB |
testcase_04 | AC | 329 ms
60,500 KB |
testcase_05 | AC | 360 ms
62,644 KB |
testcase_06 | AC | 1,069 ms
147,476 KB |
testcase_07 | AC | 1,176 ms
151,576 KB |
testcase_08 | AC | 1,101 ms
145,364 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 3,063 ms
278,172 KB |
testcase_12 | AC | 3,034 ms
277,924 KB |
testcase_13 | RE | - |
testcase_14 | AC | 703 ms
118,184 KB |
testcase_15 | AC | 1,735 ms
201,308 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 3,171 ms
286,032 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 1,876 ms
211,532 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 3,244 ms
289,984 KB |
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
import java.util.* import kotlin.math.sqrt fun main(args: Array<String>){ var num = readLine()!!.toInt() var ans = "Bob" if(isWin(divPrime(num))) { ans = "Alice" } println(ans) } val dictionary = mutableMapOf<Int,MutableMap<String,Boolean>>() fun isWin(primeList:List<Int>):Boolean { if(primeList.size <= 0) { return false } if(!dictionary.containsKey(primeList.size)) { dictionary[primeList.size] = mutableMapOf() } val key = getKey(primeList) if(dictionary[primeList.size]!!.containsKey(key)) { return dictionary[primeList.size]!![key]!! } var canWin = false for(i in primeList.indices) { for(j in 1..primeList[i]) { var sublist = primeList.toMutableList() sublist[i] -= j if(sublist[i] <= 0) { sublist.removeAt(i) } sublist = sublist.sortedDescending().toMutableList() if(!isWin(sublist)) { canWin = true break } } } dictionary[primeList.size]!![key] = canWin return canWin } fun getKey(list: List<Int>):String { return list.joinToString("-") } fun divPrime(num:Int):List<Int> { val primeList = getPrime(num) if(primeList.contains(num)) { return mutableListOf(1) } val list = mutableListOf<Int>() var temp = num for(prime in primeList) { if(temp < prime) { break } var cnt = 0 while (temp % prime == 0) { cnt++ temp = temp / prime } if(cnt > 0) { if(cnt <= 2) { list.add(cnt) } else { list.add(3) } } } return list.sortedDescending() } fun getPrime(num:Int):List<Int> { val ret = mutableListOf<Int>() val flags = Array<Boolean>(num + 1) {false} for(i in 2..num) { if(flags[i]) { continue } for(j in 1..num/i) { flags[j*i] = true } ret.add(i) } return ret.toList() }