結果
問題 | No.103 素因数ゲーム リターンズ |
ユーザー | バカらっく |
提出日時 | 2019-09-30 08:50:31 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,695 bytes |
コンパイル時間 | 15,694 ms |
コンパイル使用メモリ | 444,772 KB |
実行使用メモリ | 141,800 KB |
最終ジャッジ日時 | 2024-10-03 05:07:58 |
合計ジャッジ時間 | 26,227 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 327 ms
63,212 KB |
testcase_01 | AC | 345 ms
101,080 KB |
testcase_02 | AC | 339 ms
59,676 KB |
testcase_03 | AC | 530 ms
70,988 KB |
testcase_04 | AC | 341 ms
62,928 KB |
testcase_05 | AC | 361 ms
62,912 KB |
testcase_06 | AC | 335 ms
59,492 KB |
testcase_07 | AC | 329 ms
59,700 KB |
testcase_08 | AC | 351 ms
59,544 KB |
testcase_09 | AC | 345 ms
63,036 KB |
testcase_10 | AC | 344 ms
63,040 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^ Main.kt:4:9: warning: variable 'itemCount' is never used val itemCount = readLine()!!.toInt() ^
ソースコード
import kotlin.math.max fun main(arr:Array<String>) { val itemCount = readLine()!!.toInt() val numberList = readLine()!!.split(" ").map { it.toInt() } val ans = if(canWin(numberList.sorted())) "Alice" else "Bob" println(ans) } val dic = mutableMapOf<String, Boolean>() fun canWin(numberList:List<Int>):Boolean { if(numberList.isEmpty() || numberList.all { it == 1 }) { return false } val key = numberList.joinToString("-") dic[key]?.let { return it } val maxIndex = numberList.lastIndex var canWin = false for(i in (0..maxIndex)) { if(numberList[i] == 1) { continue } val prime = getPrimeDivide(numberList[i]).toMutableMap() for(p in prime.keys) { for(j in (1..Math.min(2,prime[p]!!))) { val dv = Math.pow(p.toDouble(), j.toDouble()).toInt() val newList = numberList.toMutableList() newList[i] = numberList[i] / dv if(!canWin(newList.sorted())) { canWin = true break } } if(canWin) { break } } if(canWin) { break } } dic[key] = canWin return canWin } val primeDic = (0..10000).map { getPrimeDivide(it) } fun getPrimeDivide(num:Int):Map<Int, Int> { var div = 1 var current = num val ret = mutableMapOf<Int, Int>() while (current > 1) { div++ var cnt = 0 while (current % div == 0) { cnt++ current /= div } if(cnt > 0) { ret[div] = cnt % 3 } } return ret }