結果
問題 | No.276 連続する整数の和(1) |
ユーザー |
![]() |
提出日時 | 2020-12-16 23:33:52 |
言語 | Kotlin (2.1.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 7,226 ms |
コンパイル使用メモリ | 388,424 KB |
最終ジャッジ日時 | 2025-02-24 18:44:20 |
合計ジャッジ時間 | 7,651 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
Main.kt:6:13: error: 'fun StringBuilder.appendln(value: Long): 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)) ^^^^^^^^
ソースコード
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) }