結果

問題 No.593 4進FizzBuzz
ユーザー arbtarbt
提出日時 2017-11-11 07:55:41
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 440 bytes
コンパイル時間 9,765 ms
コンパイル使用メモリ 432,472 KB
実行使用メモリ 80,500 KB
最終ジャッジ日時 2024-11-20 13:07:38
合計ジャッジ時間 27,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
55,180 KB
testcase_01 AC 324 ms
55,092 KB
testcase_02 AC 322 ms
55,080 KB
testcase_03 AC 317 ms
55,248 KB
testcase_04 AC 301 ms
55,048 KB
testcase_05 AC 309 ms
55,284 KB
testcase_06 AC 311 ms
55,308 KB
testcase_07 AC 317 ms
55,180 KB
testcase_08 AC 316 ms
55,020 KB
testcase_09 AC 317 ms
55,260 KB
testcase_10 AC 321 ms
55,336 KB
testcase_11 AC 322 ms
55,188 KB
testcase_12 AC 321 ms
55,052 KB
testcase_13 AC 310 ms
55,044 KB
testcase_14 AC 307 ms
55,084 KB
testcase_15 AC 322 ms
55,220 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:26:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    
    val N4 = scan.nextInt()
    var _N4 = N4
    var x = 0
    var mul = 1
    while(_N4>0) {
        x += ((_N4 % 10) * mul)
        mul *= 4
        _N4 /= 10
    }
    
    println(when{
        x % 15 == 0 -> "FizzBuzz"
        x % 3 == 0 -> "Fizz"
        x % 5 == 0 -> "Buzz"
        else -> N4
    })
    
}
var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}
0