結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー バカらっくバカらっく
提出日時 2019-09-30 02:56:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 368 ms / 5,000 ms
コード長 1,309 bytes
コンパイル時間 13,111 ms
コンパイル使用メモリ 446,584 KB
実行使用メモリ 59,812 KB
最終ジャッジ日時 2024-10-03 04:51:21
合計ジャッジ時間 25,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
57,032 KB
testcase_01 AC 311 ms
57,600 KB
testcase_02 AC 318 ms
57,616 KB
testcase_03 AC 309 ms
59,472 KB
testcase_04 AC 302 ms
59,352 KB
testcase_05 AC 325 ms
59,600 KB
testcase_06 AC 308 ms
57,320 KB
testcase_07 AC 318 ms
57,540 KB
testcase_08 AC 339 ms
57,468 KB
testcase_09 AC 342 ms
59,548 KB
testcase_10 AC 345 ms
59,688 KB
testcase_11 AC 342 ms
59,600 KB
testcase_12 AC 349 ms
59,620 KB
testcase_13 AC 345 ms
59,812 KB
testcase_14 AC 336 ms
59,708 KB
testcase_15 AC 336 ms
59,708 KB
testcase_16 AC 340 ms
59,736 KB
testcase_17 AC 360 ms
59,716 KB
testcase_18 AC 356 ms
59,588 KB
testcase_19 AC 340 ms
59,752 KB
testcase_20 AC 328 ms
59,568 KB
testcase_21 AC 338 ms
59,664 KB
testcase_22 AC 352 ms
59,588 KB
testcase_23 AC 368 ms
59,600 KB
testcase_24 AC 332 ms
59,560 KB
testcase_25 AC 341 ms
59,684 KB
testcase_26 AC 342 ms
59,752 KB
testcase_27 AC 346 ms
59,724 KB
testcase_28 AC 334 ms
59,664 KB
testcase_29 AC 358 ms
59,616 KB
testcase_30 AC 345 ms
59,728 KB
testcase_31 AC 362 ms
59,596 KB
testcase_32 AC 344 ms
59,680 KB
testcase_33 AC 348 ms
59,800 KB
testcase_34 AC 276 ms
57,324 KB
testcase_35 AC 274 ms
57,320 KB
testcase_36 AC 288 ms
57,336 KB
testcase_37 AC 312 ms
59,380 KB
testcase_38 AC 310 ms
59,488 KB
testcase_39 AC 311 ms
59,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

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 cycleList = (0 until columnCount).map { 0 }
    var numList = (0 until columnCount).map { it }
    for(i in (1..100)) {
        var tmp = numList.withIndex().sortedBy { moveTo[it.index] }.map { it.value }
        numList = tmp
        cycleList = cycleList.withIndex().map { if(it.value > 0) it.value else(if (numList[it.index] == it.index) i else 0) }
    }

    val ans = cycleList.map { it.toLong() }.reduce { acc, i -> getMinKoubai(acc, i) }
    println(ans)
}

fun getMinKoubai(num1:Long, num2:Long):Long {
    val kouyaku = getMaxKouyaku(num1, num2)
    return num1 * num2 / kouyaku
}

fun getMaxKouyaku(num1:Long, num2:Long):Long {
    if(num1 % num2 == 0L) {
        return num2
    }
    return getMaxKouyaku(num2, num1%num2)
}

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
}


0