結果

問題 No.276 連続する整数の和(1)
ユーザー rutilicusrutilicus
提出日時 2020-12-16 23:33:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 289 ms / 1,000 ms
コード長 362 bytes
コンパイル時間 11,213 ms
コンパイル使用メモリ 424,980 KB
実行使用メモリ 50,996 KB
最終ジャッジ日時 2024-09-20 05:27:29
合計ジャッジ時間 15,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
50,996 KB
testcase_01 AC 275 ms
50,784 KB
testcase_02 AC 274 ms
50,820 KB
testcase_03 AC 277 ms
50,752 KB
testcase_04 AC 278 ms
50,924 KB
testcase_05 AC 283 ms
50,952 KB
testcase_06 AC 289 ms
50,796 KB
testcase_07 AC 284 ms
50,728 KB
testcase_08 AC 277 ms
50,784 KB
testcase_09 AC 277 ms
50,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(gcd(n, n * (n + 1L) / 2L))
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toLong()

    builder.appendln(gcd(n, n * (n + 1L) / 2L))

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

tailrec fun gcd(a: Long, b: Long): Long =
    when {
        b > a -> gcd(b, a)
        b == 0L -> a
        else -> gcd(b, a % b)
    }
0