結果
問題 | No.870 無敵囲い |
ユーザー | バカらっく |
提出日時 | 2022-02-14 09:03:40 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 12,535 ms |
コンパイル使用メモリ | 448,328 KB |
実行使用メモリ | 57,216 KB |
最終ジャッジ日時 | 2024-06-29 06:49:43 |
合計ジャッジ時間 | 17,718 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^ Main.kt:3:9: warning: variable 'ans' is never used val ans = if(isMuteki()) "YES" else "NO" ^
ソースコード
fun main(args: Array<String>) { val ans = if(isMuteki()) "YES" else "NO" println(isMuteki()) } fun isMuteki():Boolean { val n = readLine()!!.trim().toInt() val log = (1..n).map { readLine()!!.split(" ").map { it.toInt() - 1 } } val map = Array(9){ arrayOfNulls<Koma>(9)} val koma = mutableListOf<Koma>(Koma(0,1,7), Koma(1,2,8), Koma(2, 6,8)) koma.forEach { map[it.y][it.x] = it } log.forEach { val (fromX, fromY, toX, toY) = it val k = map[fromY][fromX]?:(Koma(koma.size, fromX, fromY).also { koma.add(it) }) map[fromY][fromX] = null k.y = toY k.x = toX map[toY][toX] = k } return (map[7][4]?.id ?: -1) == 0 && (map[7][3]?.id ?: -1) == 1 && (map[7][5]?.id ?: -1) == 2 } class Koma(val id:Int, var x:Int = 0, var y:Int = 0)