結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | startcpp |
提出日時 | 2019-10-26 14:57:53 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 323 ms / 5,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 13,179 ms |
コンパイル使用メモリ | 433,324 KB |
実行使用メモリ | 55,428 KB |
最終ジャッジ日時 | 2024-09-14 08:30:25 |
合計ジャッジ時間 | 14,680 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 311 ms
55,428 KB |
testcase_01 | AC | 319 ms
55,316 KB |
testcase_02 | AC | 323 ms
55,368 KB |
testcase_03 | AC | 320 ms
55,304 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
fun main(args: Array<String>){ var (n)=readLine()!!.split(" ").map(String::toInt) for (i in 1..n) { if (i % 15 == 0) { println("FizzBuzz"); } else if (i % 3 == 0) { println("Fizz"); } else if (i % 5 == 0) { println("Buzz"); } else { println(i); } } }