結果

問題 No.593 4進FizzBuzz
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 22:04:02
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 250 bytes
コンパイル時間 10,456 ms
コンパイル使用メモリ 425,284 KB
実行使用メモリ 75,364 KB
最終ジャッジ日時 2024-11-20 14:22:01
合計ジャッジ時間 27,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
50,000 KB
testcase_01 AC 292 ms
49,996 KB
testcase_02 AC 289 ms
49,944 KB
testcase_03 AC 290 ms
49,848 KB
testcase_04 AC 292 ms
50,124 KB
testcase_05 AC 296 ms
50,004 KB
testcase_06 AC 294 ms
49,868 KB
testcase_07 AC 292 ms
49,828 KB
testcase_08 AC 293 ms
49,804 KB
testcase_09 AC 297 ms
49,952 KB
testcase_10 AC 293 ms
50,092 KB
testcase_11 AC 295 ms
49,824 KB
testcase_12 AC 298 ms
49,924 KB
testcase_13 AC 295 ms
50,008 KB
testcase_14 AC 297 ms
49,928 KB
testcase_15 AC 294 ms
49,872 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val fours = readLine()!!
  val digit = fours.toInt(4)
  //println(digit)
  when {
    digit % 15 == 0 -> "FizzBuzz"
    digit % 3 == 0 -> "Fizz"
    digit % 5 == 0 -> "Buzz"
    else -> fours
  }.let { println(it) }
}
0