結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | バカらっく |
提出日時 | 2019-09-30 01:28:22 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 873 bytes |
コンパイル時間 | 12,366 ms |
コンパイル使用メモリ | 444,464 KB |
実行使用メモリ | 88,600 KB |
最終ジャッジ日時 | 2024-10-03 04:47:17 |
合計ジャッジ時間 | 32,943 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 265 ms
51,444 KB |
testcase_01 | AC | 304 ms
53,064 KB |
testcase_02 | AC | 306 ms
52,920 KB |
testcase_03 | AC | 311 ms
52,944 KB |
testcase_04 | AC | 284 ms
52,408 KB |
testcase_05 | AC | 323 ms
53,084 KB |
testcase_06 | AC | 292 ms
52,512 KB |
testcase_07 | AC | 313 ms
52,880 KB |
testcase_08 | AC | 312 ms
52,912 KB |
testcase_09 | AC | 322 ms
53,156 KB |
testcase_10 | AC | 316 ms
53,224 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 588 ms
83,624 KB |
testcase_21 | AC | 529 ms
81,168 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 292 ms
52,228 KB |
testcase_35 | AC | 289 ms
52,544 KB |
testcase_36 | AC | 288 ms
52,276 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
import kotlin.math.max fun main(arr:Array<String>) { val columnCount = readLine()!!.toInt() val barCount = readLine()!!.toInt() val barMap = (0 until barCount).map { readLine()!!.split(" ").map { it.toInt() - 1 } } val moveTo = (0 until columnCount).map { getGoal(it, barMap) } var numList = (0 until columnCount).map { it } for(i in (1..10000)) { var tmp = numList.withIndex().sortedBy { moveTo[it.index] }.map { it.value } numList = tmp if(numList.withIndex().all { it.index == it.value }) { println(i) return } } } fun getGoal(column:Int, barMap:List<List<Int>>):Int { var current = column for((f,t) in barMap) { if(f == current) { current = t } else if(current == t) { current = f } } return current }