結果

問題 No.887 Collatz
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:19:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 11,168 ms
コンパイル使用メモリ 427,956 KB
実行使用メモリ 50,820 KB
最終ジャッジ日時 2024-06-11 09:56:05
合計ジャッジ時間 22,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
50,688 KB
testcase_01 AC 303 ms
50,628 KB
testcase_02 AC 303 ms
50,600 KB
testcase_03 AC 302 ms
50,640 KB
testcase_04 AC 304 ms
50,536 KB
testcase_05 AC 311 ms
50,672 KB
testcase_06 AC 305 ms
50,684 KB
testcase_07 AC 304 ms
50,636 KB
testcase_08 AC 316 ms
50,520 KB
testcase_09 AC 323 ms
50,728 KB
testcase_10 AC 307 ms
50,508 KB
testcase_11 AC 312 ms
50,524 KB
testcase_12 AC 318 ms
50,520 KB
testcase_13 AC 313 ms
50,532 KB
testcase_14 AC 312 ms
50,796 KB
testcase_15 AC 320 ms
50,532 KB
testcase_16 AC 315 ms
50,680 KB
testcase_17 AC 314 ms
50,536 KB
testcase_18 AC 307 ms
50,548 KB
testcase_19 AC 312 ms
50,712 KB
testcase_20 AC 307 ms
50,788 KB
testcase_21 AC 317 ms
50,712 KB
testcase_22 AC 322 ms
50,820 KB
testcase_23 AC 323 ms
50,488 KB
testcase_24 AC 323 ms
50,620 KB
testcase_25 AC 318 ms
50,736 KB
testcase_26 AC 307 ms
50,644 KB
testcase_27 AC 314 ms
50,756 KB
testcase_28 AC 299 ms
50,556 KB
testcase_29 AC 310 ms
50,740 KB
testcase_30 AC 310 ms
50,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val arr = Stack<Int>().also { it.push(n) }
    while (arr.peek() != 1) {
        if(arr.peek() % 2 == 0) {
            arr.push(arr.peek()/2)
        } else {
            arr.push(arr.peek()*3+1)
        }
    }
    println(arr.size-1)
    println(arr.maxOrNull())
}
0