結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | rutilicus |
提出日時 | 2020-08-30 20:41:03 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 277 ms / 5,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 9,973 ms |
コンパイル使用メモリ | 434,584 KB |
実行使用メモリ | 56,976 KB |
最終ジャッジ日時 | 2024-11-15 15:20:57 |
合計ジャッジ時間 | 12,231 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 271 ms
56,628 KB |
testcase_01 | AC | 274 ms
56,976 KB |
testcase_02 | AC | 277 ms
56,784 KB |
testcase_03 | AC | 274 ms
56,768 KB |
コンパイルメッセージ
Main.kt:7:17: warning: 'appendln(Any?): 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( ^
ソースコード
fun main() { val builder = StringBuilder() val n = readInputLine().toInt() for (i in 1..n) { builder.appendln( when { i % 15 == 0 -> "FizzBuzz" i % 5 == 0 -> "Buzz" i % 3 == 0 -> "Fizz" else -> i } ) } print(builder.toString()) } fun readInputLine(): String { return readLine()!! }