結果

問題 No.378 名声値を稼ごう
ユーザー nobigomunobigomu
提出日時 2018-06-04 12:33:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 10,518 ms
コンパイル使用メモリ 428,860 KB
実行使用メモリ 49,868 KB
最終ジャッジ日時 2024-06-30 09:34:51
合計ジャッジ時間 12,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
49,768 KB
testcase_01 AC 268 ms
49,700 KB
testcase_02 AC 266 ms
49,868 KB
testcase_03 AC 271 ms
49,616 KB
testcase_04 AC 273 ms
49,556 KB
testcase_05 AC 272 ms
49,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun max(a: Long, b: Long): Long = if (a>b) a else b
fun abs(a: Long): Long = if (a<0) -a else a
fun f(a: Long): Long = a shr 1
fun g(a: Long): Long = (f(a) shl 1) + a
tailrec fun h(a: Long, b: Long, c: Long): Long = if (a>0) h(f(a),b+f(a),max(c,g(a))) else abs(c-b)
fun main(args: Array<String>) {
    val n: Long = readLine()!!.toLong()
    println(h(n,n,n shl 1))
}
0